diff options
-rw-r--r-- | databases/postgresql72/Makefile | 4 | ||||
-rw-r--r-- | games/xshipwars-client/Makefile | 2 | ||||
-rw-r--r-- | mail/poppassd/Makefile | 2 | ||||
-rw-r--r-- | net/generic-nqs/Makefile | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/databases/postgresql72/Makefile b/databases/postgresql72/Makefile index a4805d2..3648acf 100644 --- a/databases/postgresql72/Makefile +++ b/databases/postgresql72/Makefile @@ -128,12 +128,12 @@ post-install: tee ${PREFIX}/share/postgresql/post-install-notes .if !defined(DEBUG_FLAGS) .for file in ecpg pg_dump pg_id pg_passwd pg_restore psql - @ strip ${PREFIX}/bin/${file} + @ ${STRIP_CMD} ${PREFIX}/bin/${file} .endfor .endif .if !defined(WITHOUT_SERVER) # install shell defaults for pgsql user - @ strip ${PREFIX}/bin/postgres + @ ${STRIP_CMD} ${PREFIX}/bin/postgres .for i in profile cshrc @ ${SED} "s|%%PREFIX%%|${PREFIX}|g" \ < ${FILESDIR}/dot.$i.in \ diff --git a/games/xshipwars-client/Makefile b/games/xshipwars-client/Makefile index 73215f5..af4eef2 100644 --- a/games/xshipwars-client/Makefile +++ b/games/xshipwars-client/Makefile @@ -44,7 +44,7 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/../TODO \ ${PREFIX}/share/doc/xshipwars @ ${ECHO} "===> Stripping Binary " - @ strip ${PREFIX}/bin/xsw + @ ${STRIP_CMD} ${PREFIX}/bin/xsw @${CAT} ${PKGMESSAGE} diff --git a/mail/poppassd/Makefile b/mail/poppassd/Makefile index 9404deb..9cd3f5f 100644 --- a/mail/poppassd/Makefile +++ b/mail/poppassd/Makefile @@ -24,7 +24,7 @@ ALL_TARGET= poppassd MAN8= poppassd.8 post-install: - @ strip ${PREFIX}/libexec/poppassd + @ ${STRIP_CMD} ${PREFIX}/libexec/poppassd @ ${INSTALL_MAN} ${FILESDIR}/poppassd.8 ${PREFIX}/man/man8/ .include <bsd.port.mk> diff --git a/net/generic-nqs/Makefile b/net/generic-nqs/Makefile index 18f8996..a80ff55 100644 --- a/net/generic-nqs/Makefile +++ b/net/generic-nqs/Makefile @@ -117,7 +117,7 @@ pre-configure: # post-install: - @ strip ${PREFIX}/sbin/loaddaemon ${PREFIX}/sbin/finish_autoinst \ + @ ${STRIP_CMD} ${PREFIX}/sbin/loaddaemon ${PREFIX}/sbin/finish_autoinst \ ${PREFIX}/sbin/lpserver ${PREFIX}/sbin/netclient \ ${PREFIX}/sbin/netdaemon ${PREFIX}/sbin/netserver \ ${PREFIX}/sbin/nqsdaemon ${PREFIX}/sbin/nqsexejob \ |