diff options
author | alane <alane@FreeBSD.org> | 2002-12-16 00:56:53 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-12-16 00:56:53 +0800 |
commit | a61c8b73d5e7952ad6f7806b15d3b4294d847759 (patch) | |
tree | c3df98c938680547c8ef8b0b55779bd48c00cee4 /www/privoxy+ipv6 | |
parent | 3eb597ee7f63476f1b30527cae9fee81e6e99c70 (diff) | |
download | freebsd-ports-gnome-a61c8b73d5e7952ad6f7806b15d3b4294d847759.tar.gz freebsd-ports-gnome-a61c8b73d5e7952ad6f7806b15d3b4294d847759.tar.zst freebsd-ports-gnome-a61c8b73d5e7952ad6f7806b15d3b4294d847759.zip |
Don't run preconfigure in a subshell of a subshell... it seems to bork up
the path.
Approved by: kris
Diffstat (limited to 'www/privoxy+ipv6')
-rw-r--r-- | www/privoxy+ipv6/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/privoxy+ipv6/Makefile b/www/privoxy+ipv6/Makefile index 1b7205936a0f..14268020d7d3 100644 --- a/www/privoxy+ipv6/Makefile +++ b/www/privoxy+ipv6/Makefile @@ -35,7 +35,7 @@ post-patch: ${WRKSRC}/config pre-configure: - @(cd ${WRKSRC}; ${AUTOHEADER}) + @cd ${WRKSRC}; ${AUTOHEADER} pre-install: @${SED} -e 's,%%PREFIX%%,${PREFIX},g' \ |