Browse Source

Fixed broken shell syntax.

David McCullough 23 years ago
parent
commit
4977126b1c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/unistd/Makefile

+ 1 - 1
libc/unistd/Makefile

@@ -71,7 +71,7 @@ sysconf_tester.o: sysconf.c
 
 gen_sysconf_tester.o: sysconf_tester.o getpagesize_tester.o
 	@ld -r -o gen_sysconf_tester.o sysconf_tester.o getpagesize_tester.o
-	@if [ nm -s gen_sysconf_tester.o | grep -v "U errno" | grep " U " ] ; then \
+	@if nm -s gen_sysconf_tester.o | grep -v "U errno" | grep " U "; then \
 		set -e -x; \
 		echo warning: missing symbols in gen_sysconf_tester.o so using generic sysconf.c ;\
 		cp -f sysconf.c sysconf_src.c ;\