diff options
author | miwi <miwi@FreeBSD.org> | 2010-01-22 04:36:49 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-01-22 04:36:49 +0800 |
commit | f0f5554912a6ba0345ac19547168f8ef4a231c11 (patch) | |
tree | 4da5996b2a59dbf7ae9c1cebae4072bb8d087dd0 /www | |
parent | 1038e69941c70e0dbee2732280dbffe9429f575a (diff) | |
download | freebsd-ports-gnome-f0f5554912a6ba0345ac19547168f8ef4a231c11.tar.gz freebsd-ports-gnome-f0f5554912a6ba0345ac19547168f8ef4a231c11.tar.zst freebsd-ports-gnome-f0f5554912a6ba0345ac19547168f8ef4a231c11.zip |
As reported by pointyhat: env(1) did not grow a '-u' option until
7.1-RELEASE, and we still need to support 6.4-RELEASE.
PR: ports/142940 ports/142941 ports/142942 ports/142943
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
Diffstat (limited to 'www')
-rw-r--r-- | www/p5-RT-Authen-ExternalAuth/Makefile | 3 | ||||
-rw-r--r-- | www/p5-RT-Extension-LDAPImport/Makefile | 3 | ||||
-rw-r--r-- | www/p5-RT-Extension-SLA/Makefile | 3 | ||||
-rw-r--r-- | www/p5-RTx-Calendar/Makefile | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/www/p5-RT-Authen-ExternalAuth/Makefile b/www/p5-RT-Authen-ExternalAuth/Makefile index 43d09588f091..766723c26e9a 100644 --- a/www/p5-RT-Authen-ExternalAuth/Makefile +++ b/www/p5-RT-Authen-ExternalAuth/Makefile @@ -51,7 +51,8 @@ PLIST_SUB+= RTHOME=${RTHOME} # $PREFIX in the environment and inherit settings from RT.pm do-configure: @cd ${CONFIGURE_WRKSRC} && \ - ${SETENV} -u PREFIX ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile .include <bsd.port.mk> diff --git a/www/p5-RT-Extension-LDAPImport/Makefile b/www/p5-RT-Extension-LDAPImport/Makefile index 60b836f4ebbd..0a3126f6b676 100644 --- a/www/p5-RT-Extension-LDAPImport/Makefile +++ b/www/p5-RT-Extension-LDAPImport/Makefile @@ -55,7 +55,8 @@ post-patch: # $PREFIX in the environment and inherit settings from RT.pm do-configure: @cd ${CONFIGURE_WRKSRC} && \ - ${SETENV} -u PREFIX ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile .include <bsd.port.mk> diff --git a/www/p5-RT-Extension-SLA/Makefile b/www/p5-RT-Extension-SLA/Makefile index 8ea0f088fc97..b1d28f841487 100644 --- a/www/p5-RT-Extension-SLA/Makefile +++ b/www/p5-RT-Extension-SLA/Makefile @@ -65,7 +65,8 @@ SUB_FILES+= pkg-message # $PREFIX in the environment and inherit settings from RT.pm do-configure: @cd ${CONFIGURE_WRKSRC} && \ - ${SETENV} -u PREFIX ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile post-install: diff --git a/www/p5-RTx-Calendar/Makefile b/www/p5-RTx-Calendar/Makefile index c9d64d23c20d..1e79a1283da4 100644 --- a/www/p5-RTx-Calendar/Makefile +++ b/www/p5-RTx-Calendar/Makefile @@ -52,7 +52,8 @@ PLIST_SUB+= RTHOME=${RTHOME} # $PREFIX in the environment and inherit settings from RT.pm do-configure: @cd ${CONFIGURE_WRKSRC} && \ - ${SETENV} -u PREFIX ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${RT_PM_DIR} ./${CONFIGURE_SCRIPT} && \ ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile .include <bsd.port.mk> |