diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1994-05-06 15:31:51 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1994-05-06 15:31:51 +0000 |
commit | 490415571b66d0ab2e97c207f7f5842904c784ae (patch) | |
tree | 571b2df44a3e4371a4aac297213191b0ede48b5f /gcc | |
parent | d3158f1a2385750e61dc82d332a18cbd5cbb2c60 (diff) | |
download | gcc-490415571b66d0ab2e97c207f7f5842904c784ae.zip gcc-490415571b66d0ab2e97c207f7f5842904c784ae.tar.gz gcc-490415571b66d0ab2e97c207f7f5842904c784ae.tar.bz2 |
Don't ignore errors in for loop over $(LIB[12]FUNCS_EXTRA)
From-SVN: r7223
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cdf2859..3e0ce21 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$$//'`; \ |