summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorrillig <rillig>2005-11-05 08:43:44 +0000
committerrillig <rillig>2005-11-05 08:43:44 +0000
commit6a84688aab5acba80c8b0540a04dca78b387873f (patch)
tree33dff1617aef846aa0c19c14b136d97dd8bfb08a /lang
parent42250b4bf7063ea6671ff3609baaa41d7c1db8dd (diff)
downloadpkgsrc-6a84688aab5acba80c8b0540a04dca78b387873f.tar.gz
The Solaris /bin/sh doesn't like two adjacent open parentheses. Removed
them completely, as they had been unnecessary. As ${MKDIR} already includes the -p option, the ${TEST} is not necessary and has been dropped, too. Fixes PR 32002.
Diffstat (limited to 'lang')
-rw-r--r--lang/gcc34/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/gcc34/Makefile b/lang/gcc34/Makefile
index 63dea7bb5e1..9236c22d91c 100644
--- a/lang/gcc34/Makefile
+++ b/lang/gcc34/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2005/07/09 00:16:53 kristerw Exp $
+# $NetBSD: Makefile,v 1.26 2005/11/05 08:43:44 rillig Exp $
#
DISTNAME= gcc-${GCC_VERSION}
@@ -195,8 +195,8 @@ pre-configure:
.endif
do-configure:
- ((${TEST} -d ${WRKDIR}/obj || ${MKDIR} ${WRKDIR}/obj) && \
- (cd ${WRKDIR}/obj && ${SETENV} ${CONFIGURE_ENV} ${WRKSRC}/configure ${CONFIGURE_ARGS}))
+ ${MKDIR} ${WRKDIR}/obj
+ cd ${WRKDIR}/obj; ${SETENV} ${CONFIGURE_ENV} ${CONFIG_SHELL} ${WRKSRC}/configure ${CONFIGURE_ARGS}
do-build:
(cd ${WRKDIR}/obj && ${SETENV} ${MAKE_ENV} ${GMAKE} bootstrap)