diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-30 22:35:43 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-30 22:35:43 +0000 |
commit | 4e5affec0c5b98683a1324cd52e5a7dec85d2cdc (patch) | |
tree | b576457e8af4fad4f0af47eaca7f163a57812a74 /libc | |
parent | 9763cff2ebceba18ee961ead4246759f5c3ac30e (diff) |
remove pointless exit 1 ... if $(AR) fails then make will abort ok
Diffstat (limited to 'libc')
-rw-r--r-- | libc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/Makefile b/libc/Makefile index 26358c1d0..ba3cd503a 100644 --- a/libc/Makefile +++ b/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) |