diff options
author | Chris Larson <clarson@kergoth.com> | 2005-03-09 22:02:59 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2005-03-09 22:02:59 +0000 |
commit | 0fe95e93e6485a819cefa0d6d5f5a4d9ac800309 (patch) | |
tree | 9e651c7c1a7dcc3e76765775d1a4355e2d4022b8 /packages/appweb/appweb-1.2.0/makerules.patch | |
parent | 1eaf0ad2c89971f15b6ab7ce2a0688ef6869163f (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into handhelds.org:/home/kergoth/code/openembedded
2005/03/09 17:02:43-05:00 handhelds.org!kergoth
Kill off some old appweb versions, and fix the appweb build to pass 'linux' into its configure script rather than 'linux-uclibc' when targeting uclibc.
BKrev: 422f7293K2OlGz2oeNO6eboXgubDVQ
Diffstat (limited to 'packages/appweb/appweb-1.2.0/makerules.patch')
-rw-r--r-- | packages/appweb/appweb-1.2.0/makerules.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/appweb/appweb-1.2.0/makerules.patch b/packages/appweb/appweb-1.2.0/makerules.patch index e69de29bb2..55d3dd22d9 100644 --- a/packages/appweb/appweb-1.2.0/makerules.patch +++ b/packages/appweb/appweb-1.2.0/makerules.patch @@ -0,0 +1,34 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- appWeb-1.2.0/make.rules~makerules 2004-06-28 14:50:23.000000000 -0500 ++++ appWeb-1.2.0/make.rules 2004-07-15 13:27:35.000000000 -0500 +@@ -61,24 +61,19 @@ + for i in $$D "" ; \ + do [ -z "$$i" ] && continue ;\ + [ -d "$$i" ] || continue ;\ +- home=`pwd` ; \ +- cd "$$i" >/dev/null ; \ +- if [ -f Makefile ] ; then \ ++ if [ -f $$i/Makefile ] ; then \ + echo ; \ +- echo " cd $$i" ; \ + set +e ; \ + unset COMPILE_SHARED EXPORT_OBJECTS _LDPATH ; \ + set -e ; \ + echo " \# $(MAKE) $$T" ; \ +- $(MAKE) --no-print-directory -S $$T ; \ ++ $(MAKE) -C $$i --no-print-directory -S $$T ; \ + code=$$? ; \ + if [ $$code != 0 ] ; then \ + echo "\#WARNING: Makefile error in `pwd`" ; \ + exit 255 ; \ + fi ; \ +- echo " cd $$home" ; \ + fi ; \ +- cd $$home >/dev/null ;\ + done + + DO_RECURSE=[ -z "$$D" ] || $(RECURSE) |