summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-10-01 04:01:04 +0000
committerEric Andersen <andersen@codepoet.org>2002-10-01 04:01:04 +0000
commit351c1d9029844a97d2771da883fc2b432d5e1bd4 (patch)
treea34bd9ebca22836e7054ff78d1f503c718d62e6f
parent6a95b43a5e864f811c7c8083f598dc07f7ea9d17 (diff)
Sigh. OpenBSD used /usr/bin/{true|false}
-rw-r--r--Makefile2
-rw-r--r--Rules.mak2
-rw-r--r--extra/locale/Makefile4
-rw-r--r--test/Rules.mak2
4 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index bc3f74a04..ed4bd3d11 100644
--- a/Makefile
+++ b/Makefile
@@ -102,7 +102,7 @@ headers: dummy
echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU in \`Config'"; \
echo "correctly. Please edit \`Config' and fix these settings."; \
echo " "; \
- /bin/false; \
+ false; \
fi;
rm -f include/linux include/scsi
ln -fs $(KERNEL_SOURCE)/include/linux include/linux
diff --git a/Rules.mak b/Rules.mak
index e4baa5ea3..41d41c924 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -99,7 +99,7 @@ NATIVE_CFLAGS:=-O2 -Wall
ifeq ($(strip $(DODEBUG)),true)
CFLAGS += -g
LDFLAGS:= -shared --warn-common --warn-once -z combreloc
- STRIPTOOL:= /bin/true -Since_we_are_debugging
+ STRIPTOOL:= true -Since_we_are_debugging
else
CFLAGS += -DNDEBUG #-fomit-frame-pointer
LDFLAGS := -s -shared --warn-common --warn-once -z combreloc
diff --git a/extra/locale/Makefile b/extra/locale/Makefile
index 174329817..d97dba25b 100644
--- a/extra/locale/Makefile
+++ b/extra/locale/Makefile
@@ -22,7 +22,7 @@ codesets.txt:
echo -e " $(EXTRA_LOCALE_DIR)/codesets.txt"; \
echo "and then edit that file to disable/enable the codesets you wish to support. "; \
echo " "; \
- /bin/false; \
+ false; \
fi;
gen_wc8bit: gen_wc8bit.c
@@ -61,7 +61,7 @@ locales.txt:
echo "then edit locales.txt to disable/enable the locales you wish "; \
echo "to support. "; \
echo " "; \
- /bin/false; \
+ false; \
fi;
ifneq ($(TARGET_ARCH),$(NATIVE_ARCH))
diff --git a/test/Rules.mak b/test/Rules.mak
index 25398a137..46e82f3fa 100644
--- a/test/Rules.mak
+++ b/test/Rules.mak
@@ -59,7 +59,7 @@ ifeq ($(DODEBUG),true)
GLIBC_CFLAGS +=$(WARNINGS) $(OPTIMIZATION) -g
LDFLAGS =-Wl,-warn-common
GLIBC_LDFLAGS =-Wl,-warn-common
- STRIPTOOL =/bin/true -Since_we_are_debugging
+ STRIPTOOL =true -Since_we_are_debugging
else
CFLAGS +=$(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer
GLIBC_CFLAGS +=$(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer