diff options
author | ghen <ghen> | 2006-03-11 10:07:49 +0000 |
---|---|---|
committer | ghen <ghen> | 2006-03-11 10:07:49 +0000 |
commit | ba064a8e01efe6fde67eb2da70fd73ddb23198e1 (patch) | |
tree | 9825bc45aa84169ac0e533e81c0c40931c03a653 /devel/kdesdk3 | |
parent | 3eb9589ff4a2f41aa6d340b5f0b23accad097136 (diff) | |
download | pkgsrc-ba064a8e01efe6fde67eb2da70fd73ddb23198e1.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 'devel/kdesdk3')
-rw-r--r-- | devel/kdesdk3/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/kdesdk3/Makefile b/devel/kdesdk3/Makefile index 48ef08b48ed..6fa4321958d 100644 --- a/devel/kdesdk3/Makefile +++ b/devel/kdesdk3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2006/02/07 19:59:21 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2006/03/11 10:07:49 ghen Exp $ DISTNAME= kdesdk-${_KDE_VERSION} PKGREVISION= 1 @@ -49,9 +49,9 @@ REPLACE_PERL+= cervisia/change_colors.pl \ scripts/rc2kcfgxt.pl REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= /bin/bash -_REPLACE.bash.new= /bin/sh -_REPLACE_FILES.bash= scripts/cvs2dist scripts/makeobj \ +REPLACE.bash.old= /bin/bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash= scripts/cvs2dist scripts/makeobj \ scripts/package_crystalsvg .include "../../mk/bsd.prefs.mk" |