jim 01/05/11 14:03:36
Modified: build mkdep.sh
Log:
Minor nit. We know that 'test -z' is OK, since
we use it elsewhere, so be safe :)
Revision Changes Path
1.3 +1 -1 apr/build/mkdep.sh
Index: mkdep.sh
===================================================================
RCS file: /home/cvs/apr/build/mkdep.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mkdep.sh 2001/05/11 19:46:22 1.2
+++ mkdep.sh 2001/05/11 21:03:32 1.3
@@ -7,7 +7,7 @@
# Note that we use && to ensure that Makefile is not changed if an error
# occurs during the process
#
-if [ -z $CC ]; then
+if test -z "$CC"; then
CC=cc
fi