ICU-6627 Fixed scripting syntax.

X-SVN-Rev: 26438
This commit is contained in:
John Vu 2009-07-24 21:52:08 +00:00
parent ffb25fd6a9
commit b845779b1c

View file

@ -125,11 +125,11 @@ case $platform in
THE_OS=AIX
THE_COMP="xlC_r"
CC=`which xlc_r`; export CC
if ! [-x $CC]; then
if [ ! -x $CC ]; then
echo "ERROR: xlc_r was not found, please check the PATH to make sure it is correct."; exit 1
fi
CXX=`which xlC_r`; export CXX
if ! [-x $CXX]; then
if [ ! -x $CXX ]; then
echo "ERROR: xlC_r was not found, please check the PATH to make sure it is correct."; exit 1
fi
RELEASE_CFLAGS="-O2 -qmaxmem=-1"