diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 10:42:41 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 10:42:41 +0800 |
commit | 54a9de1bc46c49543c5fc07b6128d0f18b5c4023 (patch) | |
tree | 63ca8b1b366b8d64e4d645959252f91f9d55ab5f /japanese | |
parent | 929e461fb30940a507219f54c08472fb7347d37a (diff) | |
download | freebsd-ports-gnome-54a9de1bc46c49543c5fc07b6128d0f18b5c4023.tar.gz freebsd-ports-gnome-54a9de1bc46c49543c5fc07b6128d0f18b5c4023.tar.zst freebsd-ports-gnome-54a9de1bc46c49543c5fc07b6128d0f18b5c4023.zip |
expr -> ${EXPR}
mv -> ${MV}
rm -> ${RM}
tr -> ${TR}
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/gawk/Makefile | 2 | ||||
-rw-r--r-- | japanese/groff/Makefile | 2 | ||||
-rw-r--r-- | japanese/gxditview/Makefile | 2 | ||||
-rw-r--r-- | japanese/tcl76/Makefile | 2 | ||||
-rw-r--r-- | japanese/tk42/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/japanese/gawk/Makefile b/japanese/gawk/Makefile index 59af0bfbce23..7136950c315e 100644 --- a/japanese/gawk/Makefile +++ b/japanese/gawk/Makefile @@ -40,7 +40,7 @@ pre-fetch: done; \ for file in ${DISTPATCHES} ; do zcat $${file}; done | \ ${SED} -e '1,/-----8</d' -e '/-----8</,/-----8</d' | uudecode; \ - rm -f ${DISTPATCHES};\ + ${RM} -f ${DISTPATCHES};\ fi) .endif diff --git a/japanese/groff/Makefile b/japanese/groff/Makefile index a221684467e0..81d40440687e 100644 --- a/japanese/groff/Makefile +++ b/japanese/groff/Makefile @@ -27,7 +27,7 @@ DESCS= ${WRKSRC}/devnippon/DESC.proto ${WRKSRC}/devps/DESC.in #for not writing "/usr/local" explicitly in the patch post-patch: @for f in ${DESCS}; do \ - /bin/mv -f $${f} $${f}.tmp; \ + ${MV} -f $${f} $${f}.tmp; \ ${SED} -e '$$d' $${f}.tmp > $${f}; \ case $${f} in \ */devnippon/*) \ diff --git a/japanese/gxditview/Makefile b/japanese/gxditview/Makefile index f7e81dd70bea..9050f9f93303 100644 --- a/japanese/gxditview/Makefile +++ b/japanese/gxditview/Makefile @@ -35,7 +35,7 @@ pre-fetch: done; \ for file in ${DISTPATCHES} ; do zcat $${file}; done | \ ${SED} '/^END -----/,/^BEGIN ----/d' | uudecode; \ - rm -f ${DISTPATCHES};\ + ${RM} -f ${DISTPATCHES};\ fi) .include <bsd.port.mk> diff --git a/japanese/tcl76/Makefile b/japanese/tcl76/Makefile index e24be9561b0d..b6f7671877ba 100644 --- a/japanese/tcl76/Makefile +++ b/japanese/tcl76/Makefile @@ -39,7 +39,7 @@ post-configure: @${CP} ${FILESDIR}/Makefile.lib ${WRKSRC} pre-build: - cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} VERSION=${VERSION} && rm *.o + cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} VERSION=${VERSION} && ${RM} *.o pre-install: ${MKDIR} ${PREFIX}/lib/tcl${VERSION} diff --git a/japanese/tk42/Makefile b/japanese/tk42/Makefile index 1589ffa5d879..d27b01e00027 100644 --- a/japanese/tk42/Makefile +++ b/japanese/tk42/Makefile @@ -44,7 +44,7 @@ post-configure: @${CP} ${FILESDIR}/Makefile.lib ${WRKSRC} pre-build: - cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} VERSION=${VERSION} && rm -f *.o + cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} VERSION=${VERSION} && ${RM} -f *.o pre-install: ${MKDIR} ${PREFIX}/lib/tk${VERSION} |