diff options
author | ghen <ghen@pkgsrc.org> | 2006-03-11 10:07:49 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-03-11 10:07:49 +0000 |
commit | a527d84ce0123fb8dc070f189fece884178a5b96 (patch) | |
tree | 9825bc45aa84169ac0e533e81c0c40931c03a653 /wm | |
parent | 1201f6fa6d70310f4959bf4d12fa53dc86569a34 (diff) | |
download | pkgsrc-a527d84ce0123fb8dc070f189fece884178a5b96.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 'wm')
-rw-r--r-- | wm/ratpoison/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wm/ratpoison/Makefile b/wm/ratpoison/Makefile index 4836def4fd9..830bb412060 100644 --- a/wm/ratpoison/Makefile +++ b/wm/ratpoison/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2006/03/09 14:50:31 ghen Exp $ +# $NetBSD: Makefile,v 1.20 2006/03/11 10:07:50 ghen Exp $ # DISTNAME= ratpoison-1.4.0-beta4 @@ -16,9 +16,9 @@ USE_GNU_READLINE= YES INFO_FILES= ratpoison.info REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= /usr/bin/env bash -_REPLACE.bash.new= ${SH:Q} -_REPLACE_FILES.bash= contrib/rpws +REPLACE.bash.old= /usr/bin/env bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash= contrib/rpws .include "../../devel/readline/buildlink3.mk" .include "../../mk/x11.buildlink3.mk" |