Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/pc532/floppies/inst-common Use ${STRIP} instead of s...



details:   https://anonhg.NetBSD.org/src/rev/8cb3d37a6f8c
branches:  trunk
changeset: 516341:8cb3d37a6f8c
user:      jmc <jmc%NetBSD.org@localhost>
date:      Sun Oct 21 23:20:05 2001 +0000

description:
Use ${STRIP} instead of strip directly.

diffstat:

 distrib/pc532/floppies/inst-common/Makefile.inc |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r ac6ca3e772b7 -r 8cb3d37a6f8c distrib/pc532/floppies/inst-common/Makefile.inc
--- a/distrib/pc532/floppies/inst-common/Makefile.inc   Sun Oct 21 23:18:50 2001 +0000
+++ b/distrib/pc532/floppies/inst-common/Makefile.inc   Sun Oct 21 23:20:05 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.inc,v 1.18 2001/10/13 06:15:19 jmc Exp $ 
+#      $NetBSD: Makefile.inc,v 1.19 2001/10/21 23:20:05 jmc Exp $ 
 
 # TOP is assumed to be defined by Makefile including this one.
 
@@ -21,6 +21,7 @@
 
 CRUNCHGEN?=    crunchgen
 MTREE?=                mtree
+STRIP?=                strip
 
 DISKTYPE=      boot3
 RAMDISKTYPE=   rd
@@ -83,7 +84,7 @@
 netbsd.gz: ramdisk.fs
        cp ${KERNEL} /var/tmp/$$$$; \
                mdsetimage -v /var/tmp/$$$$ ramdisk.fs; \
-               strip /var/tmp/$$$$; \
+               ${STRIP} /var/tmp/$$$$; \
                gzip -9 </var/tmp/$$$$ >netbsd.gz; \
                rm /var/tmp/$$$$
 



Home | Main Index | Thread Index | Old Index