From: Ian Lance Taylor Date: Fri, 6 May 1994 15:31:51 +0000 (+0000) Subject: Don't ignore errors in for loop over $(LIB[12]FUNCS_EXTRA) X-Git-Tag: misc/cutover-egcs-0~6720 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=490415571b66d0ab2e97c207f7f5842904c784ae;p=thirdparty%2Fgcc.git Don't ignore errors in for loop over $(LIB[12]FUNCS_EXTRA) From-SVN: r7223 --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cdf2859e2ee2..3e0ce217677f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -719,7 +719,7 @@ libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status # We don't use -e here because there are if statements # that should not make the command give up when the if condition is false. # Instead, we test for failure after each command where it matters. - -for file in .. $(LIB1FUNCS_EXTRA); \ + for file in .. $(LIB1FUNCS_EXTRA); \ do \ if [ x$${file} != x.. ]; then \ name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \ @@ -773,7 +773,7 @@ libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \ # We don't use -e here because there are if statements # that should not make the command give up when the if condition is false. # Instead, we test for failure after each command where it matters. - -for file in .. $(LIB2FUNCS_EXTRA); \ + for file in .. $(LIB2FUNCS_EXTRA); \ do \ if [ x$${file} != x.. ]; then \ name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \