diff options
author | marcus <marcus@FreeBSD.org> | 2003-06-03 01:10:33 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-06-03 01:10:33 +0000 |
commit | 023d3d1fa8036282a305a2c1d904d9fe45c8027d (patch) | |
tree | 67ea0c659bf592acaf8acacfa11c5ddeff6365a5 /www/firefox10 | |
parent | 337525ca604cffcf9bc6f21e56db3dbcb10fa758 (diff) | |
download | FreeBSD-ports-023d3d1fa8036282a305a2c1d904d9fe45c8027d.zip FreeBSD-ports-023d3d1fa8036282a305a2c1d904d9fe45c8027d.tar.gz |
Use ${PERL5} to properly locate perl.
Submitted by: perky
Diffstat (limited to 'www/firefox10')
-rw-r--r-- | www/firefox10/Makefile | 1 | ||||
-rw-r--r-- | www/firefox10/files/mozconfig.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/www/firefox10/Makefile b/www/firefox10/Makefile index ccc53c9..aea22c4 100644 --- a/www/firefox10/Makefile +++ b/www/firefox10/Makefile @@ -101,6 +101,7 @@ post-extract:: -e 's|@X11BASE@|${X11BASE}|' \ -e 's|@LOCALBASE@|${LOCALBASE}|' \ -e 's|@PREFIX@|${LOCAL_PREFIX}|' \ + -e 's|@PERL@|${PERL5}|' \ <${FILESDIR}/mozconfig.in >${WRKSRC}/.mozconfig post-patch: diff --git a/www/firefox10/files/mozconfig.in b/www/firefox10/files/mozconfig.in index ed13973..66f0897 100644 --- a/www/firefox10/files/mozconfig.in +++ b/www/firefox10/files/mozconfig.in @@ -18,7 +18,7 @@ export LDFLAGS="@LDFLAGS@" export CONFIG_SH=/bin/sh export XP_UNIX=1 mk_add_options XP_UNIX=1 -export PERL=/usr/local/bin/perl +export PERL="@PERL@" mk_add_options PERL=$PERL # Configure options for installation ac_add_options --prefix=@PREFIX@ |