From 4e42ac4f9ec9fc4bf945ffd8f69110bec69f64a9 Mon Sep 17 00:00:00 2001 From: "lenz@mysql.com" <> Date: Thu, 12 Feb 2004 16:51:52 +0100 Subject: [PATCH] - fixed broken shellcode --- support-files/mysql.spec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"