Browse Source

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

Mike Frysinger 19 years ago
parent
commit
4e5affec0c
1 changed files with 1 additions and 1 deletions
  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)