Re: squid store io modifications: a small fix

From: Henrik Nordstrom <hno@dont-contact.us>
Date: Wed, 19 Jan 2000 02:50:56 +0100

Henrik Nordstrom wrote:
>
> Yet another small fix to the store I/O modifications.

Sorry, sent the wrong patch.. I wanted to send this one:

/Henrik

* squid-2.3.STABLE1-storeio-mod.1.no_selected_modules.patch *

Wed Jan 19 00:19:37 CET 2000
Modified Files in squid/auth_modules
        Makefile.in
Modified Files in squid/src/fs
        Makefile.in

Added Makefile logic to for handling the case where none of the modules are
selected.

-----------------------------------------------------------------

Index: squid/auth_modules/Makefile.in
diff -u squid/auth_modules/Makefile.in:1.1.1.1 squid/auth_modules/Makefile.in:1.1.1.1.4.1
--- squid/auth_modules/Makefile.in:1.1.1.1 Sat Jan 15 00:39:49 2000
+++ squid/auth_modules/Makefile.in Wed Jan 19 00:19:30 2000
@@ -6,7 +6,7 @@
 SUBDIRS = @AUTH_MODULES@
 
 all:
- @for dir in $(SUBDIRS); do \
+ @test -z "$(SUBDIRS)" || for dir in $(SUBDIRS); do \
            sh -c "cd $$dir && make all" || exit 1; \
         done
 
@@ -26,6 +26,6 @@
         done
 
 .DEFAULT:
- @for dir in $(SUBDIRS); do \
+ @test -z "$(SUBDIRS)" || for dir in $(SUBDIRS); do \
            sh -c "cd $$dir && make $@" || exit 1; \
         done
Index: squid/src/fs/Makefile.in
diff -u squid/src/fs/Makefile.in:1.1.1.1 squid/src/fs/Makefile.in:1.1.1.1.2.1
--- squid/src/fs/Makefile.in:1.1.1.1 Sat Jan 15 00:47:30 2000
+++ squid/src/fs/Makefile.in Wed Jan 19 00:19:36 2000
@@ -6,7 +6,7 @@
 SUBDIRS = @STORE_MODULES@
 
 all:
- @for dir in $(SUBDIRS); do \
+ @test -z "$(SUBDIRS)" || for dir in $(SUBDIRS); do \
            sh -c "cd $$dir && make all" || exit 1; \
         done; \
         if [ ! -f stamp ]; then \
@@ -30,6 +30,6 @@
         done
 
 .DEFAULT:
- @for dir in $(SUBDIRS); do \
+ @test -z "$(SUBDIRS)" || for dir in $(SUBDIRS); do \
            sh -c "cd $$dir && make $@" || exit 1; \
         done
Received on Tue Jan 18 2000 - 18:55:54 MST

This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:12:20 MST