diff options
author | osa <osa@FreeBSD.org> | 2003-09-24 17:37:11 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-09-24 17:37:11 +0800 |
commit | fad424db6aa8e3d5d3787f06534ab341318a0851 (patch) | |
tree | 16c65d0d30c32fd9ee844536c6aa0ee73c37274d /misc | |
parent | 93bb34061fad01e2d453b6d0a6b4652d12a96df6 (diff) | |
download | freebsd-ports-gnome-fad424db6aa8e3d5d3787f06534ab341318a0851.tar.gz freebsd-ports-gnome-fad424db6aa8e3d5d3787f06534ab341318a0851.tar.zst freebsd-ports-gnome-fad424db6aa8e3d5d3787f06534ab341318a0851.zip |
Make portlint(1) happy by changing strip to ${STRIP_CMD}
Submitted by: Oleg Karachevtsev <ok@etrust.ru>
PR: 56998
Diffstat (limited to 'misc')
-rw-r--r-- | misc/heyu/Makefile | 2 | ||||
-rw-r--r-- | misc/heyu2/Makefile | 2 | ||||
-rw-r--r-- | misc/moviedb/Makefile | 4 | ||||
-rw-r--r-- | misc/peq/Makefile | 4 | ||||
-rw-r--r-- | misc/sloccount/Makefile | 2 | ||||
-rw-r--r-- | misc/smssend/Makefile | 2 | ||||
-rw-r--r-- | misc/vbidecode/Makefile | 2 | ||||
-rw-r--r-- | misc/xdf/Makefile | 2 |
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> |