diff options
author | ghen <ghen> | 2006-03-11 10:07:49 +0000 |
---|---|---|
committer | ghen <ghen> | 2006-03-11 10:07:49 +0000 |
commit | f5ae17480158de9ef2e0cfe5decb881ef8689518 (patch) | |
tree | 9825bc45aa84169ac0e533e81c0c40931c03a653 /geography | |
parent | f4670b46063e962a691661be5e2859b8fb52224d (diff) | |
download | pkgsrc-f5ae17480158de9ef2e0cfe5decb881ef8689518.tar.gz |
Convert all packages using REPLACE_INTERPRETER to the new variable names
without underscores (REPLACE.*.old, REPLACE.*.new, and REPLACE_FILES.*).
Also convert REPLACE.*.new= ${SH:Q} back to ${SH}, as it should not be quoted
here, if at all.
Ok with rillig.
Diffstat (limited to 'geography')
-rw-r--r-- | geography/gpsdrive/Makefile | 8 | ||||
-rw-r--r-- | geography/gpspoint/Makefile | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/geography/gpsdrive/Makefile b/geography/gpsdrive/Makefile index d7ac59c582c..241871ac376 100644 --- a/geography/gpsdrive/Makefile +++ b/geography/gpsdrive/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2006/03/09 11:30:51 ghen Exp $ +# $NetBSD: Makefile,v 1.9 2006/03/11 10:07:50 ghen Exp $ DISTNAME= gpsdrive-1.31 PKGREVISION= 9 @@ -21,9 +21,9 @@ USE_LANGUAGE= c c++ CONFIGURE_ARGS+= --disable-mysql REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= /bin/bash -_REPLACE.bash.new= ${SH:Q} -_REPLACE_FILES.bash= src/gpsfetchmap +REPLACE.bash.old= /bin/bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash= src/gpsfetchmap .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/glib/buildlink3.mk" diff --git a/geography/gpspoint/Makefile b/geography/gpspoint/Makefile index 74c64506771..5b68adb7f98 100644 --- a/geography/gpspoint/Makefile +++ b/geography/gpspoint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2006/03/09 14:50:31 ghen Exp $ +# $NetBSD: Makefile,v 1.7 2006/03/11 10:07:50 ghen Exp $ DISTNAME= gpspoint-2.030521 PKGREVISION= 1 @@ -16,8 +16,8 @@ USE_LIBTOOL= yes GNU_CONFIGURE= yes REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= /bin/bash -_REPLACE.bash.new= ${SH:Q} -_REPLACE_FILES.bash= src/mgpspoint +REPLACE.bash.old= /bin/bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash= src/mgpspoint .include "../../mk/bsd.pkg.mk" |