diff options
author | Dave Love <fx@gnu.org> | 2000-03-08 19:10:01 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-03-08 19:10:01 +0000 |
commit | 7397acc4946b0a953b5f13cd99dfff9a68fffb66 (patch) | |
tree | fc788c6221028775c3fa9b8b6d6f0b79ecbaa3f5 /lwlib/Makefile.in | |
parent | eea0252e8347b1917bd6f23951e7a6d3de1d9869 (diff) | |
download | emacs-7397acc4946b0a953b5f13cd99dfff9a68fffb66.tar.gz |
(liblw.a): Don't bother testing for ranlib failing
since configure sets it up.
Diffstat (limited to 'lwlib/Makefile.in')
-rw-r--r-- | lwlib/Makefile.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in index af08be99fe2..45887428b69 100644 --- a/lwlib/Makefile.in +++ b/lwlib/Makefile.in @@ -44,11 +44,7 @@ all:: liblw.a liblw.a: $(OBJS) $(RM) $@ $(AR) $@ $(OBJS) - @echo Do not be alarmed if the following ranlib command - @echo fails due to the absence of a ranlib program on your system. - -$(RANLIB) $@ || true -#If running ranlib fails, probably there is none. -#That's ok. So don't stop the build. + $(RANLIB) $@ # Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes. lwlib.o: $(srcdir)/lwlib.c Makefile |