fielding 01/05/17 20:57:29
Modified: . Makefile.in
Log:
Avoid slurping up the expat object files when creating libaprutil.
Revision Changes Path
1.31 +2 -2 apr-util/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/Makefile.in,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- Makefile.in 2001/04/12 01:37:33 1.30
+++ Makefile.in 2001/05/18 03:57:29 1.31
@@ -26,7 +26,7 @@
delete-lib:
@if test -f $(TARGET_LIB); then \
- objects="`find $(SUBDIRS) -name '[EMAIL PROTECTED]@' -a -newer
$(TARGET_LIB)`" ; \
+ objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -a -newer $(TARGET_LIB)`" ; \
if test -n "$$objects"; then \
echo Found newer objects. Will relink $(TARGET_LIB). ; \
echo $(RM) -f $(TARGET_LIB) ; \
@@ -45,7 +45,7 @@
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
$(TARGET_LIB):
- @objects="`find $(SUBDIRS) -name '[EMAIL PROTECTED]@'`" ; \
+ @objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@'`"; \
$(LINK) @lib_target@
delete-exports: