diff options
Diffstat (limited to 'appweb/appweb-1.0.0/makerules.patch')
-rw-r--r-- | appweb/appweb-1.0.0/makerules.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/appweb/appweb-1.0.0/makerules.patch b/appweb/appweb-1.0.0/makerules.patch index e69de29bb2..ccf2caa005 100644 --- a/appweb/appweb-1.0.0/makerules.patch +++ b/appweb/appweb-1.0.0/makerules.patch @@ -0,0 +1,23 @@ +--- tmp/base/appweb-1.0.0-r0/appWeb-1.0.0/make.rules 2004-01-09 12:49:45.000000000 -0500 ++++ appWeb-1.0.0/make.rules 2004-01-28 20:28:09.000000000 -0500 +@@ -119,14 +119,13 @@ + do [ -z "$$i" ] && continue ;\ + [ -d "$$i" ] || continue ;\ + home=`pwd` ; \ +- cd "$$i" >/dev/null ; \ +- if [ -f Makefile ] ; then \ ++ if [ -f $$i/Makefile ] ; then \ + echo ; echo " \# make \"$$T\" in `pwd` " ; \ +- echo " cd $$i" ; unset CFLAGS ; \ +- echo " $(MAKE) -S $(MAKEF) DEBUG=$(DEBUG) \ +- MAKEFLAGS=$(MAKEFLAGS) $$T" ; \ +- $(MAKE) --no-print-directory -S $(MAKEF) DEBUG="$(DEBUG)" \ +- MAKEFLAGS=$(MAKEFLAGS) $$T ; \ ++ unset CFLAGS ; \ ++ echo " $(MAKE) -C $$i -S $(MAKEF) DEBUG=$(DEBUG) \ ++ $$T" ; \ ++ $(MAKE) --no-print-directory -C $$i -S $(MAKEF) DEBUG="$(DEBUG)" \ ++ $$T ; \ + code=$$? ; \ + if [ $$code != 0 ] ; then \ + echo "\#WARNING: Makefile error in `pwd`" ; \ |