emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100162: Let configure handle ranlib.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100162: Let configure handle ranlib.
Date: Thu, 06 May 2010 00:29:09 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100162
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2010-05-06 00:29:09 -0700
message:
  Let configure handle ranlib.
  
  * oldXMenu/Makefile.in (RANLIB): Let configure set it.
  (libXMenu11.a): configure sets RANLIB = : on systems without it.
modified:
  oldXMenu/ChangeLog
  oldXMenu/Makefile.in
=== modified file 'oldXMenu/ChangeLog'
--- a/oldXMenu/ChangeLog        2010-05-06 07:24:18 +0000
+++ b/oldXMenu/ChangeLog        2010-05-06 07:29:09 +0000
@@ -1,5 +1,8 @@
 2010-05-06  Glenn Morris  <address@hidden>
 
+       * Makefile.in (RANLIB): Let configure set it.
+       (libXMenu11.a): configure sets RANLIB = : on systems without it.
+
        * Makefile.in (CPP, LN_S, AS, LD, MV, LS, LINTOPTS, LINTLIBFLAG, MAKE)
        (STD_DEFINES, CDEBUGFLAGS, RM_CMD): Remove unused variables.
 

=== modified file 'oldXMenu/Makefile.in'
--- a/oldXMenu/Makefile.in      2010-05-06 07:24:18 +0000
+++ b/oldXMenu/Makefile.in      2010-05-06 07:29:09 +0000
@@ -55,7 +55,7 @@
 address@hidden@
 TAGS = etags
 RM = rm -f
-RANLIB = ranlib
+RANLIB = @RANLIB@
 # Solaris 2.1 ar doesn't accept the 'l' option.
 AR = ar cq
 
@@ -97,11 +97,7 @@
 libXMenu11.a: $(OBJS) $(EXTRA)
        $(RM) $@
        $(AR) $@ $(OBJS) $(EXTRA)
-       @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) $@
 
 Activate.o: Activate.c XMenuInt.h XMenu.h X10.h
 AddPane.o: AddPane.c XMenuInt.h XMenu.h X10.h


reply via email to

[Prev in Thread] Current Thread [Next in Thread]