From e1fc743e11edd437e966c6deb47150d93b3100d2 Mon Sep 17 00:00:00 2001 From: rillig Date: Sat, 5 Nov 2005 08:43:44 +0000 Subject: 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. --- lang/gcc34/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lang/gcc34/Makefile') 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) -- cgit v1.2.3