fielding 01/08/24 01:05:30
Modified: . Makefile.in
Log:
Crikey, this should be in the developer FAQ... if you need a for loop in
a shell script that uses an autoconf or makefile variable to set its
value, please look at all of the other places where it is done right
before committing something which is just wrong.
Revision Changes Path
1.44 +3 -5 apr-util/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/Makefile.in,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- Makefile.in 2001/08/18 09:54:16 1.43
+++ Makefile.in 2001/08/24 08:05:30 1.44
@@ -44,11 +44,9 @@
@APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \
fi; \
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir); \
- if test -n "$(INSTALL_SUBDIRS)"; then \
- for i in "$(INSTALL_SUBDIRS)"; do \
- ( cd $$i ; $(MAKE) install ); \
- done \
- fi
+ list='$(INSTALL_SUBDIRS)'; for i in $$list; do \
+ ( cd $$i ; $(MAKE) install ); \
+ done
$(TARGET_LIB):
@objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -print`"; \