diff options
author | jdp <jdp@FreeBSD.org> | 1998-09-23 07:21:00 +0800 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1998-09-23 07:21:00 +0800 |
commit | ad1363dca57ffb70badaae8ee808c777b8147885 (patch) | |
tree | 4a0e86260b57e408a8c95d6a9fadce9d5d62bb9d | |
parent | 38ca3da4612639698d4eddaf9b41a220b4fa00ac (diff) | |
download | freebsd-ports-gnome-ad1363dca57ffb70badaae8ee808c777b8147885.tar.gz freebsd-ports-gnome-ad1363dca57ffb70badaae8ee808c777b8147885.tar.zst freebsd-ports-gnome-ad1363dca57ffb70badaae8ee808c777b8147885.zip |
Define STRIP as the empty string so that install won't try to strip
the executables when it installs them. They are already stripped in
the distfile. They are not necessarily in the format specified by
OBJFORMAT, so install could invoke the wrong version of strip.
Problem noticed by: Jeremy Lea <reg@shale.csir.co.za>
-rw-r--r-- | net/cvsup-bin/Makefile | 3 | ||||
-rw-r--r-- | net/cvsupd-bin/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/net/cvsup-bin/Makefile b/net/cvsup-bin/Makefile index 12a51016a26e..0bd6a6a7069a 100644 --- a/net/cvsup-bin/Makefile +++ b/net/cvsup-bin/Makefile @@ -3,7 +3,7 @@ # Date created: 12 November 1997 # Whom: Sheldon Hearn <axl@iafrica.com> # -# $Id: Makefile,v 1.5 1998/07/07 03:22:33 jdp Exp $ +# $Id: Makefile,v 1.6 1998/08/17 21:44:57 jdp Exp $ # DISTNAME= cvsup-bin-15.4.2 @@ -18,6 +18,7 @@ MAINTAINER= axl@iafrica.com NO_BUILD= yes MAN1= cvsup.1 +STRIP= do-configure: cd ${WRKSRC}; gunzip cvsup.1.gz diff --git a/net/cvsupd-bin/Makefile b/net/cvsupd-bin/Makefile index 18af18a421a2..d69e66ae7e3e 100644 --- a/net/cvsupd-bin/Makefile +++ b/net/cvsupd-bin/Makefile @@ -3,7 +3,7 @@ # Date created: 17 August 1998 # Whom: Sheldon Hearn <axl@iafrica.com> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/08/17 21:37:02 jdp Exp $ # DISTNAME= cvsupd-bin-15.4.2 @@ -18,6 +18,7 @@ MAINTAINER= axl@iafrica.com NO_BUILD= yes MAN8= cvsupd.8 +STRIP= do-configure: cd ${WRKSRC}; gunzip cvsupd.8.gz |