jerenkrantz 02/05/12 22:43:50
Modified: . Makefile.in
Log:
Remove unnecesary \-escaping. It's okay for this not to be one large
command.
(Makes this target easier to manipulate and understand. Also consistent
with the install targets in apr and httpd-2.0.)
Revision Changes Path
1.63 +8 -8 apr-util/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/Makefile.in,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- Makefile.in 9 May 2002 16:33:07 -0000 1.62
+++ Makefile.in 13 May 2002 05:43:50 -0000 1.63
@@ -49,18 +49,18 @@
install: $(TARGET_LIB)
if [ ! -d $(includedir) ]; then \
@APR_SOURCE_DIR@/build/mkdir.sh $(includedir); \
- fi; \
- cp include/*.h $(includedir); \
+ fi;
+ cp include/*.h $(includedir)
if [ ! -d $(libdir) ]; then \
@APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \
- fi; \
- $(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir); \
- $(LIBTOOL) --mode=install cp aprutil.exp $(libdir); \
+ fi;
+ $(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
+ $(LIBTOOL) --mode=install cp aprutil.exp $(libdir)
if [ ! -d $(bindir) ]; then \
@APR_SOURCE_DIR@/build/mkdir.sh $(bindir); \
- fi; \
- $(LIBTOOL) --mode=install cp apu-config $(bindir); \
- chmod 755 $(bindir)/apu-config; \
+ fi;
+ $(LIBTOOL) --mode=install cp apu-config $(bindir)
+ chmod 755 $(bindir)/apu-config
list='$(INSTALL_SUBDIRS)'; for i in $$list; do \
( cd $$i ; $(MAKE) install ); \
done