diff options
author | obache <obache@pkgsrc.org> | 2014-03-03 05:06:43 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-03-03 05:06:43 +0000 |
commit | 8a63ec4d8c8c6ab616fcd0cab901fdc9d5b98164 (patch) | |
tree | e908bf9dae50e57b10506ccca158e82982b1bafe /pkgtools | |
parent | f70aff5a9826ae424e5d8e664a0cf7a6f7e9b2f6 (diff) | |
download | pkgsrc-8a63ec4d8c8c6ab616fcd0cab901fdc9d5b98164.tar.gz |
Fixes perl interpreter path for the case using builtin perl.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkgdepgraph/Makefile | 3 | ||||
-rwxr-xr-x | pkgtools/pkgdepgraph/files/pkgdepgraph.pl | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/pkgtools/pkgdepgraph/Makefile b/pkgtools/pkgdepgraph/Makefile index 80a5da7c44d..cc4d87186e4 100644 --- a/pkgtools/pkgdepgraph/Makefile +++ b/pkgtools/pkgdepgraph/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2014/03/03 05:03:49 obache Exp $ +# $NetBSD: Makefile,v 1.35 2014/03/03 05:06:43 obache Exp $ # PKGNAME= pkgdepgraph-2.8 @@ -38,6 +38,7 @@ do-build: -e 's|@PKG_DBDIR@|${PKG_DBDIR}|g' \ -e 's|@PKGSRCDIR@|${PKGSRCDIR}|g' \ -e 's|@DISTVER@|${DISTVER}|g' \ + -e 's|@PERL5@|${PERL5}|g' \ < ${WRKSRC}/${file}.pl \ > ${WRKSRC}/${file} .endfor diff --git a/pkgtools/pkgdepgraph/files/pkgdepgraph.pl b/pkgtools/pkgdepgraph/files/pkgdepgraph.pl index 3b399f28920..6261c97d243 100755 --- a/pkgtools/pkgdepgraph/files/pkgdepgraph.pl +++ b/pkgtools/pkgdepgraph/files/pkgdepgraph.pl @@ -1,9 +1,9 @@ -#!@PREFIX@/bin/perl +#!@PERL5@ # Copyright (c) 2002, 2003, 2004 by Andrew Brown <atatat@netbsd.org> # Absolutely no warranty. -# $NetBSD: pkgdepgraph.pl,v 1.11 2005/06/26 17:34:19 atatat Exp $ +# $NetBSD: pkgdepgraph.pl,v 1.12 2014/03/03 05:06:43 obache Exp $ # pkgdepgraph: @DISTVER@ use strict; |