summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2003-09-24 09:37:11 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2003-09-24 09:37:11 +0000
commitf37f7775e3bcaa6fa808e1a5e037deae35d5b262 (patch)
treedfd75e4de6392a8352e2ab1fc6550d87dccdb06c /misc
parent- Update to version 0.7.10 (diff)
Make portlint(1) happy by changing strip to ${STRIP_CMD}
Submitted by: Oleg Karachevtsev <ok@etrust.ru> PR: 56998
Notes
Notes: svn path=/head/; revision=89169
Diffstat (limited to 'misc')
-rw-r--r--misc/heyu/Makefile2
-rw-r--r--misc/heyu2/Makefile2
-rw-r--r--misc/moviedb/Makefile4
-rw-r--r--misc/peq/Makefile4
-rw-r--r--misc/sloccount/Makefile2
-rw-r--r--misc/smssend/Makefile2
-rw-r--r--misc/vbidecode/Makefile2
-rw-r--r--misc/xdf/Makefile2
8 files changed, 10 insertions, 10 deletions
diff --git a/misc/heyu/Makefile b/misc/heyu/Makefile
index d48106bdc139..c3d40b79980e 100644
--- a/misc/heyu/Makefile
+++ b/misc/heyu/Makefile
@@ -31,7 +31,7 @@ pre-patch:
(cd ${WRKSRC} && ./Configure)
post-install:
- strip ${PREFIX}/bin/heyu
+ ${STRIP_CMD} ${PREFIX}/bin/heyu
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/examples/heyu
${INSTALL_DATA} ${WRKSRC}/x10config ${PREFIX}/share/examples/heyu/x10config.sample
diff --git a/misc/heyu2/Makefile b/misc/heyu2/Makefile
index d48106bdc139..c3d40b79980e 100644
--- a/misc/heyu2/Makefile
+++ b/misc/heyu2/Makefile
@@ -31,7 +31,7 @@ pre-patch:
(cd ${WRKSRC} && ./Configure)
post-install:
- strip ${PREFIX}/bin/heyu
+ ${STRIP_CMD} ${PREFIX}/bin/heyu
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/examples/heyu
${INSTALL_DATA} ${WRKSRC}/x10config ${PREFIX}/share/examples/heyu/x10config.sample
diff --git a/misc/moviedb/Makefile b/misc/moviedb/Makefile
index cc64a9308597..c67b7fe968ff 100644
--- a/misc/moviedb/Makefile
+++ b/misc/moviedb/Makefile
@@ -67,9 +67,9 @@ pre-install:
post-install:
.for STRIP in alist lformat lguide lindex list listall lseen ltrace mkballot \
template templist title
- strip ${PREFIX}/bin/${STRIP}
+ ${STRIP_CMD} ${PREFIX}/bin/${STRIP}
.endfor
- strip ${PREFIX}/libexec/moviedb/mkdb
+ ${STRIP_CMD} ${PREFIX}/libexec/moviedb/mkdb
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/moviedb
.for DOC in ADDS-GUIDE ChangeLog FAQ FUTURES INSTRUCTIONS manual.tex
diff --git a/misc/peq/Makefile b/misc/peq/Makefile
index 3855341ffc06..cdf864c06754 100644
--- a/misc/peq/Makefile
+++ b/misc/peq/Makefile
@@ -19,7 +19,7 @@ USE_GCC= 2.95
USE_QT_VER= 1
post-install:
- strip ${PREFIX}/bin/peq
- strip ${PREFIX}/bin/xpeq
+ ${STRIP_CMD} ${PREFIX}/bin/peq
+ ${STRIP_CMD} ${PREFIX}/bin/xpeq
.include <bsd.port.mk>
diff --git a/misc/sloccount/Makefile b/misc/sloccount/Makefile
index c5f78f4a7f63..14ec09a5248c 100644
--- a/misc/sloccount/Makefile
+++ b/misc/sloccount/Makefile
@@ -23,7 +23,7 @@ MAN1= sloccount.1
post-install:
.for file in lexcount1 c_count java_count php_count
- @strip ${PREFIX}/bin/${file}
+ @${STRIP_CMD} ${PREFIX}/bin/${file}
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
diff --git a/misc/smssend/Makefile b/misc/smssend/Makefile
index 44a9ac909e51..032aa51a9f30 100644
--- a/misc/smssend/Makefile
+++ b/misc/smssend/Makefile
@@ -21,6 +21,6 @@ HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX}
post-install:
- strip ${PREFIX}/bin/smssend
+ ${STRIP_CMD} ${PREFIX}/bin/smssend
.include <bsd.port.mk>
diff --git a/misc/vbidecode/Makefile b/misc/vbidecode/Makefile
index e6ad695cc19b..d75441183c76 100644
--- a/misc/vbidecode/Makefile
+++ b/misc/vbidecode/Makefile
@@ -27,6 +27,6 @@ BROKEN= "Does not compile (bad C++ code)"
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/vbidecode ${PREFIX}/bin
- @strip ${PREFIX}/bin/vbidecode
+ @${STRIP_CMD} ${PREFIX}/bin/vbidecode
.include <bsd.port.post.mk>
diff --git a/misc/xdf/Makefile b/misc/xdf/Makefile
index eb482af3c6e9..ff2b293f8ef7 100644
--- a/misc/xdf/Makefile
+++ b/misc/xdf/Makefile
@@ -20,6 +20,6 @@ USE_X_PREFIX= yes
USE_GMAKE= yes
post-install:
- strip ${PREFIX}/bin/xdf
+ ${STRIP_CMD} ${PREFIX}/bin/xdf
.include <bsd.port.mk>