diff options
author | agc <agc> | 2003-07-09 16:18:06 +0000 |
---|---|---|
committer | agc <agc> | 2003-07-09 16:18:06 +0000 |
commit | 9ac03e9c60d374bcc3dbddff9de79e164ec75b03 (patch) | |
tree | 7ecbf5452873edb5c37dc8401779375f07739bdf /mk | |
parent | ffb127b077261e286babf4bada85cb0818198bdb (diff) | |
download | pkgsrc-9ac03e9c60d374bcc3dbddff9de79e164ec75b03.tar.gz |
Append perl to the list of interpreters to be replaced if ${REPLACE_PERL}
is set, rather than a straight assignation.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 6e5ea25a174..9bacfa67ee7 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1207 2003/07/09 16:07:29 agc Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1208 2003/07/09 16:18:06 agc Exp $ # # This file is in the public domain. # @@ -1983,7 +1983,7 @@ do-patch: uptodate-digest # the do-configure target that are used during the build phase. .if defined(REPLACE_PERL) -REPLACE_INTERPRETER= perl +REPLACE_INTERPRETER+= perl _REPLACE.perl.old= .*/bin/perl _REPLACE.perl.new= ${PERL5} _REPLACE_FILES.perl= ${REPLACE_PERL} |