diff options
author | mat <mat@FreeBSD.org> | 2014-11-27 23:19:51 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2014-11-27 23:19:51 +0800 |
commit | 1e99883bc093b1c4c7e3dc3d2bb6ae8b9b8c4e8e (patch) | |
tree | 12f238bba854a82f6678df8fb31e5de7772ec356 /lang | |
parent | f7da1c99160ff21eb86095edc3830c53c0bcd02d (diff) | |
download | freebsd-ports-gnome-1e99883bc093b1c4c7e3dc3d2bb6ae8b9b8c4e8e.tar.gz freebsd-ports-gnome-1e99883bc093b1c4c7e3dc3d2bb6ae8b9b8c4e8e.tar.zst freebsd-ports-gnome-1e99883bc093b1c4c7e3dc3d2bb6ae8b9b8c4e8e.zip |
/usr/bin/env is in SETENV, not ENV, and sometime, ENV=$USER/.shrc, which of
course, won't work.
Noticed by: Richard Clayton
Sponsored by: Absolight
Diffstat (limited to 'lang')
-rw-r--r-- | lang/perl5.14/Makefile | 2 | ||||
-rw-r--r-- | lang/perl5.16/Makefile | 2 | ||||
-rw-r--r-- | lang/perl5.18/Makefile | 2 | ||||
-rw-r--r-- | lang/perl5.20/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lang/perl5.14/Makefile b/lang/perl5.14/Makefile index 04d59e851e46..b4fda78435f6 100644 --- a/lang/perl5.14/Makefile +++ b/lang/perl5.14/Makefile @@ -226,7 +226,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only # staged, so, use the one in WRKDIR - (cd /usr/include && ${ENV} LD_LIBRARY_PATH=${WRKSRC} \ + (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) @${FIND} ${STAGEDIR}${SITE_ARCH} -name '*.ph' | sed -e 's|${STAGEDIR}||' >> ${TMPPLIST} diff --git a/lang/perl5.16/Makefile b/lang/perl5.16/Makefile index 0bca42e09e5b..c8c4ca0c3df7 100644 --- a/lang/perl5.16/Makefile +++ b/lang/perl5.16/Makefile @@ -226,7 +226,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only # staged, so, use the one in WRKDIR - (cd /usr/include && ${ENV} LD_LIBRARY_PATH=${WRKSRC} \ + (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) @${FIND} ${STAGEDIR}${SITE_ARCH} -name '*.ph' | sed -e 's|${STAGEDIR}||' >> ${TMPPLIST} diff --git a/lang/perl5.18/Makefile b/lang/perl5.18/Makefile index 74ab54eaf1bd..278fa0f39f63 100644 --- a/lang/perl5.18/Makefile +++ b/lang/perl5.18/Makefile @@ -205,7 +205,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only # staged, so, use the one in WRKDIR - (cd /usr/include && ${ENV} LD_LIBRARY_PATH=${WRKSRC} \ + (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) @${FIND} ${STAGEDIR}${SITE_ARCH} -name '*.ph' | sed -e 's|${STAGEDIR}||' >> ${TMPPLIST} diff --git a/lang/perl5.20/Makefile b/lang/perl5.20/Makefile index 986eedde4e2b..b102aa897ac6 100644 --- a/lang/perl5.20/Makefile +++ b/lang/perl5.20/Makefile @@ -201,7 +201,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only # staged, so, use the one in WRKDIR - (cd /usr/include && ${ENV} LD_LIBRARY_PATH=${WRKSRC} \ + (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) @${FIND} ${STAGEDIR}${SITE_ARCH} -name '*.ph' | sed -e 's|${STAGEDIR}||' >> ${TMPPLIST} |