trawick     01/05/18 02:23:40

  Modified:    .        Makefile.in
  Log:
  Avoid rebuilding libaprutil.la even when nothing changed.
  When nothing changed, the find output is "xml/expat", so
  check for "xml/expat" instead of the empty string.
  
  Revision  Changes    Path
  1.32      +1 -1      apr-util/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/Makefile.in,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- Makefile.in       2001/05/18 03:57:29     1.31
  +++ Makefile.in       2001/05/18 09:23:34     1.32
  @@ -27,7 +27,7 @@
   delete-lib:
        @if test -f $(TARGET_LIB); then \
            objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL 
PROTECTED]@' -a -newer $(TARGET_LIB)`" ; \
  -         if test -n "$$objects"; then \
  +         if test "$$objects" != "xml/expat"; then \
                echo Found newer objects. Will relink $(TARGET_LIB). ; \
                echo $(RM) -f $(TARGET_LIB) ; \
                $(RM) -f $(TARGET_LIB) ; \
  
  
  

Reply via email to