diff options
author | pat <pat@FreeBSD.org> | 2002-06-26 18:56:18 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-06-26 18:56:18 +0000 |
commit | f58b86b1b49c49c3ba11755d1db7a9db835a52e4 (patch) | |
tree | 3a8d55e292d00cc10eeddda805ee1d3325f771a4 | |
parent | 579d446fc7e4c80823b7f59d4a89d3a943e03490 (diff) | |
download | FreeBSD-ports-f58b86b1b49c49c3ba11755d1db7a9db835a52e4.zip FreeBSD-ports-f58b86b1b49c49c3ba11755d1db7a9db835a52e4.tar.gz |
strip -> ${STRIP_CMD}
PR: ports/39756
Submitted by: Scott Flatman <sf@dsinw.com>
-rw-r--r-- | x11/ecore/Makefile | 2 | ||||
-rw-r--r-- | x11/wscan/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/x11/ecore/Makefile b/x11/ecore/Makefile index 0dee4b3..fd885c5 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 8af1c1d..3b53353 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> |