diff options
author | max <max@FreeBSD.org> | 1997-06-21 13:21:31 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-06-21 13:21:31 +0800 |
commit | 93ce87f860cc907ebca4034d794aca6fc3524aad (patch) | |
tree | 5d6fddfac28440f4d809ffae155179aad5c7a315 /x11/tkgoodstuff | |
parent | 5696c80626dc32cd0f85b0dced1db8d64bb45a80 (diff) | |
download | freebsd-ports-gnome-93ce87f860cc907ebca4034d794aca6fc3524aad.tar.gz freebsd-ports-gnome-93ce87f860cc907ebca4034d794aca6fc3524aad.tar.zst freebsd-ports-gnome-93ce87f860cc907ebca4034d794aca6fc3524aad.zip |
Instead of defining INSTALL_PROGRAM="" in CONFIGURE_ENV, put STRIP= to
remove the -s flag from the install program.
(Actually, either method works, however, this is somewhat better as
most of other ports use this method to achieve the same goal, so that
it is easier for other porters to find out what is meant by this.)
Diffstat (limited to 'x11/tkgoodstuff')
-rw-r--r-- | x11/tkgoodstuff/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/tkgoodstuff/Makefile b/x11/tkgoodstuff/Makefile index 90b2bedc9efe..42ec105a578c 100644 --- a/x11/tkgoodstuff/Makefile +++ b/x11/tkgoodstuff/Makefile @@ -3,7 +3,7 @@ # Date created: 7 Oct 1996 # Whom: pst # -# $Id: Makefile,v 1.4 1996/11/18 11:44:04 asami Exp $ +# $Id: Makefile,v 1.5 1997/04/20 13:20:00 wosch Exp $ # DISTNAME= tkgoodstuff4.1 @@ -18,8 +18,8 @@ RUN_DEPENDS= fvwm:${PORTSDIR}/x11/fvwm2 LIB_DEPENDS= tk41\\.1:${PORTSDIR}/x11/tk41 GNU_CONFIGURE= yes -CONFIGURE_ENV= TCLCONFIGSH=/usr/libdata/tcl/tclConfig.sh TCLSH=/usr/bin/tclsh \ - INSTALL_PROGRAM="" +CONFIGURE_ENV= TCLCONFIGSH=/usr/libdata/tcl/tclConfig.sh TCLSH=/usr/bin/tclsh CONFIGURE_ARGS= --enable-libs +STRIP= .include <bsd.port.mk> |