summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorlenz@mysql.com <>2003-04-09 14:53:20 +0200
committerlenz@mysql.com <>2003-04-09 14:53:20 +0200
commitcea01eccb876a5ab9ffc5f52a9480484f49f9f1a (patch)
treed41e385d83fa4c74a6c8fb3ca8fe53fbf67d960e /BUILD
parentfa0741c918d0edd1a85e6776ee5863ccaaac9efd (diff)
downloadmariadb-git-cea01eccb876a5ab9ffc5f52a9480484f49f9f1a.tar.gz
- don't override CXX if it's already defined
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD/SETUP.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh
index 9a092b84a8f..55b82e38d63 100644
--- a/BUILD/SETUP.sh
+++ b/BUILD/SETUP.sh
@@ -71,4 +71,6 @@ else
make=make
fi
-CXX=gcc
+if test -z $CXX ; then
+ CXX=gcc
+fi