chuck 97/01/16 09:20:34
Modified: src/modules Makefile
Log:
Submitted by: [EMAIL PROTECTED]
Fix bug for using multiple subdirectories under modules. I also added the
bug fix to the clean production, since it would also be a problem there.
Revision Changes Path
1.6 +2 -0 apache/src/modules/Makefile
Index: Makefile
===================================================================
RCS file: /export/home/cvs/apache/src/modules/Makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -C3 -r1.5 -r1.6
*** Makefile 1997/01/01 18:19:49 1.5
--- Makefile 1997/01/16 17:20:32 1.6
***************
*** 59,68 ****
--- 59,70 ----
(for dir in $(MODULES); do \
cd $$dir; \
$(MAKE) CC=$(CC) AUX_CFLAGS="$(AUX_CFLAGS)" RANLIB=$(RANLIB); \
+ cd ..; \
done)
clean:
(for dir in $(MODULES); do \
cd $$dir; $(MAKE) clean; \
+ cd ..; \
done)