diff options
author | peter <peter@FreeBSD.org> | 1998-02-09 09:35:20 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-02-09 09:35:20 +0800 |
commit | c51311af058f10af6f209a3db7e17d7fb7c6fe91 (patch) | |
tree | 479ff993acb6313d453749c36931f48692b15533 /www/squid24 | |
parent | 41373aa8b1c7708c3f14575b84e014f770da6a31 (diff) | |
download | freebsd-ports-gnome-c51311af058f10af6f209a3db7e17d7fb7c6fe91.tar.gz freebsd-ports-gnome-c51311af058f10af6f209a3db7e17d7fb7c6fe91.tar.zst freebsd-ports-gnome-c51311af058f10af6f209a3db7e17d7fb7c6fe91.zip |
I forgot to strip the binaries in the new locations, I missed this
change in the Makefile Evan sent me.
Submitted by: Evan Champion <evanc@piano.synapse.net>
Diffstat (limited to 'www/squid24')
-rw-r--r-- | www/squid24/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/squid24/Makefile b/www/squid24/Makefile index b1a71f36f5f6..0301e4c5497f 100644 --- a/www/squid24/Makefile +++ b/www/squid24/Makefile @@ -3,7 +3,7 @@ # Date created: Thu Nov 7 00:53:18 WST 1996 # Whom: Peter Wemm <peter@freebsd.org> # -# $Id: Makefile,v 1.39 1998/02/08 03:04:58 peter Exp $ +# $Id: Makefile,v 1.40 1998/02/08 03:39:05 peter Exp $ # DISTNAME= squid-1.2.beta14 @@ -65,7 +65,12 @@ MAKEFILE= makefile post-install: cd ${WRKSRC}/src; make install-pinger -.for file in cachemgr.cgi client dnsserver pinger squid +.for file in client squid + if [ -f ${PREFIX}/sbin/${file} ] ; then \ + strip ${PREFIX}/sbin/${file} ; \ + fi +.endfor +.for file in cachemgr.cgi dnsserver pinger unlinkd if [ -f ${PREFIX}/sbin/${file} ] ; then \ strip ${PREFIX}/sbin/${file} ; \ fi |