summaryrefslogtreecommitdiff
path: root/libc/unistd
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2002-04-11 06:23:34 +0000
committerDavid McCullough <davidm@snapgear.com>2002-04-11 06:23:34 +0000
commit4977126b1c2b6a43dfe814c232ba538925c72e48 (patch)
treeb6145fda46279796536d58a3b0a82dc36843c809 /libc/unistd
parentee7b1a312d2e19ef7fb530ca908dd0edc02afea1 (diff)
Fixed broken shell syntax.
Diffstat (limited to 'libc/unistd')
-rw-r--r--libc/unistd/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/Makefile b/libc/unistd/Makefile
index 97cd21c49..8309497ba 100644
--- a/libc/unistd/Makefile
+++ b/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 ;\