diff options
author | hubertf <hubertf@pkgsrc.org> | 1998-02-09 00:47:23 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1998-02-09 00:47:23 +0000 |
commit | 16b5cca770efd1f0d5fbc07d8d6770d70007b7c6 (patch) | |
tree | 5cf7db537a76f66f4282ce1554783586c2eff3ab /mk/bsd.port.subdir.mk | |
parent | d16d2fc0c95c8921efbc72936656325437ace601 (diff) | |
download | pkgsrc-16b5cca770efd1f0d5fbc07d8d6770d70007b7c6.tar.gz |
Fix PR 4884 by replacing STRIP with STRIPFLAG.
This addes yet another step towards bsd.pkg.mk. :)
Diffstat (limited to 'mk/bsd.port.subdir.mk')
-rw-r--r-- | mk/bsd.port.subdir.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.port.subdir.mk b/mk/bsd.port.subdir.mk index 2ad949b99bb..16180e2a427 100644 --- a/mk/bsd.port.subdir.mk +++ b/mk/bsd.port.subdir.mk @@ -1,6 +1,6 @@ # from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91 # Id: bsd.port.subdir.mk,v 1.19 1997/03/09 23:10:56 wosch Exp -# $NetBSD: bsd.port.subdir.mk,v 1.7 1998/01/30 14:33:48 agc Exp $ +# $NetBSD: bsd.port.subdir.mk,v 1.8 1998/02/09 00:47:25 hubertf Exp $ # # The include file <bsd.port.subdir.mk> contains the default targets # for building ports subdirectories. @@ -8,7 +8,7 @@ # # +++ variables +++ # -# STRIP The flag passed to the install program to cause the binary +# STRIPFLAG The flag passed to the install program to cause the binary # to be stripped. This is to be used when building your # own install script so that the entire system can be made # stripped/not-stripped using a single knob. [-s] @@ -38,7 +38,7 @@ .MAIN: all .if !defined(DEBUG_FLAGS) -STRIP?= -s +STRIPFLAG?= -s .endif .if !defined(OPSYS) # XXX !! |