summaryrefslogtreecommitdiff
path: root/support-files/mysql.spec.sh
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2004-02-12 16:51:52 +0100
committerunknown <lenz@mysql.com>2004-02-12 16:51:52 +0100
commiteed5be5e09faffb19050fdf60256a736caf3300a (patch)
tree289f630480ae966f490a0ca1d42a9aad02e46913 /support-files/mysql.spec.sh
parent3ca6d616dc05daaa3dbbeb6f83cce774dffd0eee (diff)
downloadmariadb-git-eed5be5e09faffb19050fdf60256a736caf3300a.tar.gz
- fixed broken shellcode
Diffstat (limited to 'support-files/mysql.spec.sh')
-rw-r--r--support-files/mysql.spec.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh
index b69d6961f37..18f41ed5326 100644
--- a/support-files/mysql.spec.sh
+++ b/support-files/mysql.spec.sh
@@ -260,7 +260,7 @@ export PATH
# Use gcc for C and C++ code (to avoid a dependency on libstdc++ and
# including exceptions into the code
-test -z $CXX && test -z $CC
+if [ -z "$CXX" -a -z "$CC" ]
then
export CC="gcc"
export CXX="gcc"