summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Eldridge <alane@FreeBSD.org>2002-12-15 16:56:53 +0000
committerAlan Eldridge <alane@FreeBSD.org>2002-12-15 16:56:53 +0000
commit37b825e8c2ae046846f390b966cfa771cbd10f0b (patch)
tree77d8b2fed15435e6882197044d011cf7f09f7220
parent- Fix build on CURRENT (diff)
Don't run preconfigure in a subshell of a subshell... it seems to bork up
the path. Approved by: kris
Notes
Notes: svn path=/head/; revision=71655
-rw-r--r--www/privoxy+ipv6/Makefile2
-rw-r--r--www/privoxy/Makefile2
2 files changed, 2 insertions, 2 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' \
diff --git a/www/privoxy/Makefile b/www/privoxy/Makefile
index 1b7205936a0f..14268020d7d3 100644
--- a/www/privoxy/Makefile
+++ b/www/privoxy/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' \