From 490415571b66d0ab2e97c207f7f5842904c784ae Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 6 May 1994 15:31:51 +0000 Subject: [PATCH] Don't ignore errors in for loop over $(LIB[12]FUNCS_EXTRA) From-SVN: r7223 --- gcc/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cdf2859e2ee..3e0ce217677 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$$//'`; \ -- 2.30.2