summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam>2005-04-26 21:57:44 +0000
committerjlam <jlam>2005-04-26 21:57:44 +0000
commit40f775dd89b25930f255db34026786e7436c1272 (patch)
tree17d864e8e816c77b9d3e230fb18feae90d150451 /mk
parent61fe3ce61ed8d6eac9fa75df5da14ae541d04cfb (diff)
downloadpkgsrc-40f775dd89b25930f255db34026786e7436c1272.tar.gz
The gzip utilities aren't ever prefixed with ${GNU_PROGRAM_PREFIX}...
they're just "gzip", "gunzip" and "gzcat".
Diffstat (limited to 'mk')
-rw-r--r--mk/tools/replace.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/tools/replace.mk b/mk/tools/replace.mk
index 9df13768ca2..23c805a979c 100644
--- a/mk/tools/replace.mk
+++ b/mk/tools/replace.mk
@@ -1,4 +1,4 @@
-# $NetBSD: replace.mk,v 1.22 2005/04/26 21:56:13 jlam Exp $
+# $NetBSD: replace.mk,v 1.23 2005/04/26 21:57:44 jlam Exp $
#
# This Makefile fragment handles "replacements" of system-supplied
# tools with pkgsrc versions. The replacements are placed under
@@ -288,9 +288,9 @@ USE_TOOLS+= ${_t_}
!empty(_TOOLS_USE_PKGSRC.gzip:M[yY][eE][sS])
${TOOLS_DEPENDS.gzip}+= gzip-base>=1.2.4b:../../archivers/gzip-base
TOOLS_SYMLINK+= gunzip gzcat gzip
-TOOLS_REAL_CMD.gunzip= ${LOCALBASE}/bin/${GNU_PROGRAM_PREFIX}gunzip
-TOOLS_REAL_CMD.gzcat= ${LOCALBASE}/bin/${GNU_PROGRAM_PREFIX}gzcat
-TOOLS_REAL_CMD.gzip= ${LOCALBASE}/bin/${GNU_PROGRAM_PREFIX}gzip
+TOOLS_REAL_CMD.gunzip= ${LOCALBASE}/bin/gunzip
+TOOLS_REAL_CMD.gzcat= ${LOCALBASE}/bin/gzcat
+TOOLS_REAL_CMD.gzip= ${LOCALBASE}/bin/gzip
. if exists(${TOOLS_REAL_CMD.gunzip})
${_TOOLS_VARNAME.gunzip}= ${TOOLS_REAL_CMD.gunzip}
. endif