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 /parallel/openpbs | |
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 'parallel/openpbs')
-rw-r--r-- | parallel/openpbs/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/parallel/openpbs/Makefile b/parallel/openpbs/Makefile index 3493ade59d6..91eb4db5832 100644 --- a/parallel/openpbs/Makefile +++ b/parallel/openpbs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/03/04 21:30:27 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2006/03/11 10:07:50 ghen Exp $ # DISTNAME= OpenPBS_2_3_16 @@ -17,20 +17,20 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS+= --prefix=${PREFIX:Q} REPLACE_INTERPRETER+= tcl -_REPLACE.tcl.old= .*/bin/pbs_tclsh -_REPLACE.tcl.new= ${PREFIX}/bin/tclsh -_REPLACE_FILES.tcl+= src/gui/buildindex.src -_REPLACE_FILES.tcl+= src/tools/xpbsmon/buildindex.src +REPLACE.tcl.old= .*/bin/pbs_tclsh +REPLACE.tcl.new= ${PREFIX}/bin/tclsh +REPLACE_FILES.tcl+= src/gui/buildindex.src +REPLACE_FILES.tcl+= src/tools/xpbsmon/buildindex.src REPLACE_INTERPRETER+= tk -_REPLACE.tk.old= .*/bin/wish -_REPLACE.tk.new= ${PREFIX}/bin/wish -_REPLACE_FILES.tk+= src/gui/xpbs.src +REPLACE.tk.old= .*/bin/wish +REPLACE.tk.new= ${PREFIX}/bin/wish +REPLACE_FILES.tk+= src/gui/xpbs.src REPLACE_INTERPRETER+= tk2 -_REPLACE.tk2.old= .*/bin/pbs_wish -_REPLACE.tk2.new= ${PREFIX}/bin/pbs_wish -_REPLACE_FILES.tk2+= src/tools/xpbsmon/xpbsmon.src +REPLACE.tk2.old= .*/bin/pbs_wish +REPLACE.tk2.new= ${PREFIX}/bin/pbs_wish +REPLACE_FILES.tk2+= src/tools/xpbsmon/xpbsmon.src _CONFIGURE_POSTREQ+= replace-interpreter |