]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Don't ignore errors in for loop over $(LIB[12]FUNCS_EXTRA)
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 6 May 1994 15:31:51 +0000 (15:31 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 6 May 1994 15:31:51 +0000 (15:31 +0000)
From-SVN: r7223

gcc/Makefile.in

index cdf2859e2ee2cd406870e69ae94e8d9c66e5f2ba..3e0ce217677f256a39339eee5ad86cfbcb1ece3a 100644 (file)
@@ -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$$//'`; \