Procházet zdrojové kódy

remove pointless exit 1 ... if $(AR) fails then make will abort ok

Mike Frysinger před 19 roky
rodič
revize
4e5affec0c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      libc/Makefile

+ 1 - 1
libc/Makefile

@@ -68,7 +68,7 @@ $(LIBNAME) shared_$(LIBNAME) ar-target: subdirs
 		$(AR) $(ARFLAGS) $(LIBNAME) $$objs || exit 1 ; \
 	done
 	cp $(LIBNAME) shared_$(LIBNAME)
-	$(AR) $(ARFLAGS) $(LIBNAME) misc/internals/static.o || exit 1
+	$(AR) $(ARFLAGS) $(LIBNAME) misc/internals/static.o
 	$(RANLIB) $(LIBNAME)
 
 $(LIBNAME_TARGET): $(LIBNAME)