rbb 01/08/16 00:18:59
Modified: . Makefile.in
Log:
Fix a problem in install. We can't have a for loop that doesn't
have any arguments. By surrounding the Env var with "", we will
have the empty string as args if we aren't installing anything.
Revision Changes Path
1.42 +1 -1 apr-util/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/Makefile.in,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- Makefile.in 2001/08/02 23:37:46 1.41
+++ Makefile.in 2001/08/16 07:18:59 1.42
@@ -45,7 +45,7 @@
fi; \
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir); \
if test -n "$(INSTALL_SUBDIRS)"; then \
- for i in $(INSTALL_SUBDIRS); do \
+ for i in "$(INSTALL_SUBDIRS)"; do \
( cd $$i ; $(MAKE) install ); \
done \
fi