diff options
author | Alexander Langer <alex@FreeBSD.org> | 2000-07-16 13:13:33 +0000 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 2000-07-16 13:13:33 +0000 |
commit | 95bdf2b8f92facdf1c87aa8b146eb2b536c7d6f0 (patch) | |
tree | f0eba12a33f27a02e96fe51b07b62e9ccaec6bba /audio | |
parent | Update MASTER_SITES and WWW with new location (diff) |
Fix my obvious stupidity (why is it GZIP_CMD and not GZIP actually? grrr):
/usr/bin/gzip --> ${GZIP_CMD}
PR: 19942
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes:
svn path=/head/; revision=30691
Diffstat (limited to 'audio')
-rw-r--r-- | audio/workman/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/workman/Makefile b/audio/workman/Makefile index 4143642483a2..7e1430ca1008 100644 --- a/audio/workman/Makefile +++ b/audio/workman/Makefile @@ -22,6 +22,6 @@ MAN1= workman.1 MAN5= workmandb.5 post-install: - /usr/bin/gzip ${X11BASE}/man/man5/workmandb.5 + ${GZIP_CMD} ${X11BASE}/man/man5/workmandb.5 .include <bsd.port.mk> |