From cvs-return-1276-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Sun May 20 07:49:44 2001 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 13774 invoked by uid 500); 20 May 2001 07:49:43 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 13763 invoked by uid 500); 20 May 2001 07:49:43 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 20 May 2001 07:49:42 -0000 Message-ID: <20010520074942.13759.qmail@apache.org> From: fielding@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util Makefile.in 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 '*.@so_ext@' -a -newer $(TARGET_LIB)`" ; \ - if test "$$objects" != "xml/expat"; then \ + objects="`find $(SUBDIRS) -name expat -prune -o -name '*.@so_ext@' -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 '*.@so_ext@' -a -print`"; \ + @objects="`find $(SUBDIRS) -name expat -prune -o -name '*.@so_ext@' -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) ; \