pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang/gcc34 The Solaris /bin/sh doesn't like two adjace...
details: https://anonhg.NetBSD.org/pkgsrc/rev/d9fb3f3a1c51
branches: trunk
changeset: 502494:d9fb3f3a1c51
user: rillig <rillig%pkgsrc.org@localhost>
date: Sat Nov 05 08:43:44 2005 +0000
description:
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:
lang/gcc34/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r b40f02440ea6 -r d9fb3f3a1c51 lang/gcc34/Makefile
--- a/lang/gcc34/Makefile Sat Nov 05 08:34:10 2005 +0000
+++ b/lang/gcc34/Makefile Sat Nov 05 08:43:44 2005 +0000
@@ -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 @@
.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)
Home |
Main Index |
Thread Index |
Old Index