aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Li <pat@FreeBSD.org>2002-06-27 02:56:18 +0800
committerPatrick Li <pat@FreeBSD.org>2002-06-27 02:56:18 +0800
commit5796fbac0ea62d3094d8a2c1b304399a780a2729 (patch)
treef8af91fbb1f145f020ddb71ba60900ee34e5512b
parent46699d1d603c13d0cca46c37e3faab164dcef678 (diff)
downloadfreebsd-ports-5796fbac0ea62d3094d8a2c1b304399a780a2729.tar.gz
freebsd-ports-5796fbac0ea62d3094d8a2c1b304399a780a2729.tar.zst
freebsd-ports-5796fbac0ea62d3094d8a2c1b304399a780a2729.zip
strip -> ${STRIP_CMD}
PR: ports/39756 Submitted by: Scott Flatman <sf@dsinw.com>
Notes
Notes: svn path=/head/; revision=62044
-rw-r--r--x11/ecore/Makefile2
-rw-r--r--x11/wscan/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/x11/ecore/Makefile b/x11/ecore/Makefile
index 0dee4b3671c5..fd885c571092 100644
--- a/x11/ecore/Makefile
+++ b/x11/ecore/Makefile
@@ -18,6 +18,6 @@ USE_LIBTOOL= yes
INSTALLS_SHLIB= yes
post-install:
- @strip ${PREFIX}/lib/libecore.so.0
+ @${STRIP_CMD} ${PREFIX}/lib/libecore.so.0
.include <bsd.port.mk>
diff --git a/x11/wscan/Makefile b/x11/wscan/Makefile
index 8af1c1d21fea..3b533531fa5b 100644
--- a/x11/wscan/Makefile
+++ b/x11/wscan/Makefile
@@ -20,6 +20,6 @@ USE_XLIB= yes
MAN1= wscan.1
post-install:
- strip ${PREFIX}/bin/wscan
+ ${STRIP_CMD} ${PREFIX}/bin/wscan
.include <bsd.port.mk>