Justtechjobs.com Find a programming school near you






Online Campus Both


php4-beta | 199912

[PHP4BETA] cvs: /php4/ext Makefile.in From: Sascha Schumann (sascha <email protected>)
Date: 12/30/99

sas Thu Dec 30 01:17:26 1999 EDT

  Modified files:
    /php4/ext Makefile.in
  Log:
  Propagate error condition correctly
  
  
Index: php4/ext/Makefile.in
diff -u php4/ext/Makefile.in:1.1 php4/ext/Makefile.in:1.2
--- php4/ext/Makefile.in:1.1 Wed Dec 29 21:58:33 1999
+++ php4/ext/Makefile.in Thu Dec 30 01:16:55 1999
@@ -9,11 +9,11 @@
 all:
          <email protected>='$(EXT_STATIC)'; for i in $$list; do \
                 echo "Making all in $$i"; \
- (cd $$i && $(MAKE) all); \
+ (cd $$i && $(MAKE) all) || exit 1; \
         done
          <email protected>='$(EXT_SHARED)'; for i in $$list; do \
                 echo "Making shared in $$i"; \
- (cd $$i && $(MAKE) shared); \
+ (cd $$i && $(MAKE) shared) || exit 1; \
         done
 
 NO_RECURSION = all

-- 
PHP 4.0 Beta Mailing List <http://www.php.net/version4/>
To unsubscribe, e-mail: php4beta-unsubscribe <email protected>
For additional commands, e-mail: php4beta-help <email protected>
To contact the list administrators, e-mail: php4beta-admin <email protected>