diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-05 08:43:44 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-05 08:43:44 +0000 |
commit | e1fc743e11edd437e966c6deb47150d93b3100d2 (patch) | |
tree | 33dff1617aef846aa0c19c14b136d97dd8bfb08a /lang/gcc34 | |
parent | 1fa22c0a3df39d3562a7dd8bb4d04cfec8274741 (diff) | |
download | pkgsrc-e1fc743e11edd437e966c6deb47150d93b3100d2.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/gcc34')
-rw-r--r-- | lang/gcc34/Makefile | 6 |
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) |