Browse Source

Sigh. OpenBSD used /usr/bin/{true|false}

Eric Andersen 21 years ago
parent
commit
351c1d9029
4 changed files with 5 additions and 5 deletions
  1. 1 1
      Makefile
  2. 1 1
      Rules.mak
  3. 2 2
      extra/locale/Makefile
  4. 1 1
      test/Rules.mak

+ 1 - 1
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

+ 1 - 1
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

+ 2 - 2
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))

+ 1 - 1
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