From 14811e7d0ae82b3b8af18838b5be6a61001f8624 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 19 Sep 2001 13:29:33 +0000 Subject: Try to fix up the shell syntax (This used to be commit f57b1085b3a608871f0c1c8fbfe19c121dc8504f) --- source3/script/build_env.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/script') diff --git a/source3/script/build_env.sh b/source3/script/build_env.sh index b71d12b20a..0000759f16 100755 --- a/source3/script/build_env.sh +++ b/source3/script/build_env.sh @@ -6,10 +6,10 @@ srcdir=$1 builddir=$2 compiler=$3 - if [ ! $USER = "" ]; then + if [ ! "x$USER" = "x" ]; then whoami=$USER else - if [ ! $LOGNAME = "" ]; then + if [ ! "x$LOGNAME" = "x" ]; then whoami=$LOGNAME else whoami=`whoami || id -un` -- cgit