diff options
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/hevea/Makefile | 4 | ||||
-rw-r--r-- | textproc/latte/Makefile | 2 | ||||
-rw-r--r-- | textproc/rman/Makefile | 2 | ||||
-rw-r--r-- | textproc/sgmls/Makefile | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/textproc/hevea/Makefile b/textproc/hevea/Makefile index d08f1ebef963..40c43a7fdd8e 100644 --- a/textproc/hevea/Makefile +++ b/textproc/hevea/Makefile @@ -27,8 +27,8 @@ TEX_DIR= ${PREFIX}/share/texmf/tex/latex TEXHASH= ${PREFIX}/bin/texhash post-install: - strip ${PREFIX}/bin/hevea - strip ${PREFIX}/bin/hacha + ${STRIP_CMD} ${PREFIX}/bin/hevea + ${STRIP_CMD} ${PREFIX}/bin/hacha .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/hevea ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-${PORTVERSION}-manual.pdf ${PREFIX}/share/doc/hevea diff --git a/textproc/latte/Makefile b/textproc/latte/Makefile index d5b5aeeff802..d8d4cd6ec708 100644 --- a/textproc/latte/Makefile +++ b/textproc/latte/Makefile @@ -21,7 +21,7 @@ MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX}" CONFIGURE_ARGS+= --enable-shared post-install: - strip ${PREFIX}/bin/latte-html + ${STRIP_CMD} ${PREFIX}/bin/latte-html ${LN} -sf ${PREFIX}/bin/latte-html ${PREFIX}/bin/latte ${CP} -Rp ${WRKSRC}/tests ${PREFIX}/share/latte/ diff --git a/textproc/rman/Makefile b/textproc/rman/Makefile index de4f74841e2e..bcc9ee3c3de3 100644 --- a/textproc/rman/Makefile +++ b/textproc/rman/Makefile @@ -17,6 +17,6 @@ COMMENT= Reverse compile man pages from formatted form MAN1= rman.1 post-install: - @strip ${PREFIX}/bin/rman + @${STRIP_CMD} ${PREFIX}/bin/rman .include <bsd.port.mk> diff --git a/textproc/sgmls/Makefile b/textproc/sgmls/Makefile index 831d37878f44..29fd1c188fc5 100644 --- a/textproc/sgmls/Makefile +++ b/textproc/sgmls/Makefile @@ -25,7 +25,7 @@ DOCS= ChangeLog INSTALL LICENSE NEWS README TODO post-build: .for file in ${PROGS} - @strip ${WRKSRC}/${file} + @${STRIP_CMD} ${WRKSRC}/${file} .endfor @cd ${WRKSRC} && ${MAKE} test |