diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-09-04 23:39:29 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-09-04 23:39:29 +0000 |
commit | 2262dde3ac9b8eeb7790fabdf31128fd2b7c31ba (patch) | |
tree | 4644df59e413d3ef6378c2ce857e02802fa28896 /emulators | |
parent | Upgrade to 1.6.3 (diff) |
gzip -> ${GZIP_CMD}
gzip -d -> ${GUNZIP_CMD}
gzip -dc -> ${GZCAT}
gunzip -> ${GUNZIP_CMD}
Notes
Notes:
svn path=/head/; revision=21266
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/spim/Makefile | 2 | ||||
-rw-r--r-- | emulators/stonx/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/emulators/spim/Makefile b/emulators/spim/Makefile index 93ae2bf474da..3b4b7c8f2603 100644 --- a/emulators/spim/Makefile +++ b/emulators/spim/Makefile @@ -42,7 +42,7 @@ post-install: ${PREFIX}/share/doc/spim ${INSTALL_DATA} ${WRKSRC}/Documentation/cycle.ps \ ${PREFIX}/share/doc/spim - gzip -9nf ${PREFIX}/share/doc/spim/*.ps + ${GZIP_CMD} ${PREFIX}/share/doc/spim/*.ps .endif .include <bsd.port.mk> diff --git a/emulators/stonx/Makefile b/emulators/stonx/Makefile index 36c62e862d37..bfc1730c3125 100644 --- a/emulators/stonx/Makefile +++ b/emulators/stonx/Makefile @@ -64,7 +64,7 @@ do-install: @${ECHO_MSG} "===> Installing fonts" .for f in ${FONTS} @${INSTALL_DATA} ${WRKSRC}/data/$f ${FNTDIR} - @gzip -f ${FNTDIR}/$f + @${GZIP_CMD} ${FNTDIR}/$f .endfor @mkfontdir ${FNTDIR} |