fielding 01/05/20 00:49:42
Modified: . Makefile.in
Log:
Oh, so that's what was wrong... find needs the -print to be bound
only to the last condition instead of the default behavior.
Revision Changes Path
1.34 +3 -5 apr-util/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/Makefile.in,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- Makefile.in 2001/05/20 07:35:20 1.33
+++ Makefile.in 2001/05/20 07:49:42 1.34
@@ -26,12 +26,10 @@
delete-lib:
@if test -f $(TARGET_LIB); then \
- objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -a -newer $(TARGET_LIB)`" ; \
- if test "$$objects" != "xml/expat"; then \
+ objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -a -newer $(TARGET_LIB) -print`" ; \
echo Found newer objects. Will relink $(TARGET_LIB). ; \
echo $(RM) -f $(TARGET_LIB) ; \
$(RM) -f $(TARGET_LIB) ; \
- fi \
fi
install: $(TARGET_LIB)
@@ -45,12 +43,12 @@
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
$(TARGET_LIB):
- @objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -a -print`"; \
+ @objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -print`"; \
$(LINK) @lib_target@
delete-exports:
@if test -f $(TARGET_EXPORTS); then \
- headers="`find include/*.h -newer $(TARGET_EXPORTS)`" ; \
+ headers="`find include/*.h -newer $(TARGET_EXPORTS) -print`" ; \
if test -n "$$headers"; then \
echo Found newer headers. Will rebuild $(TARGET_EXPORTS). ; \
echo $(RM) -f $(TARGET_EXPORTS) ; \