summaryrefslogtreecommitdiffstats
path: root/make/uclibc.mk
diff options
context:
space:
mode:
authorManuel Novoa III2004-09-09 12:50:57 +0200
committerManuel Novoa III2004-09-09 12:50:57 +0200
commit3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee (patch)
tree935da51d77ee95870a094a5ae927b52c2c56cd48 /make/uclibc.mk
parentlatest uClibc config updates (diff)
downloadbuildroot-3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee.tar.gz
buildroot-3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee.tar.xz
buildroot-3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee.zip
Patch by michael tesch <tesch1@gmail.com> ...
The real problem, only caused when you have a *.patch file in the main build directory, is that the Makefiles don't escape the globbing operator they're passing to patch-kernel.sh. Attached is a patch to fix that.
Diffstat (limited to 'make/uclibc.mk')
-rw-r--r--make/uclibc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/uclibc.mk b/make/uclibc.mk
index 7a837e427..12b79feba 100644
--- a/make/uclibc.mk
+++ b/make/uclibc.mk
@@ -18,7 +18,7 @@ UCLIBC_SITE:=http://www.uclibc.org/downloads
endif
UCLIBC_TARGET_ARCH:=$(shell echo $(ARCH) | sed -e s'/-.*//' \
- -e 's/i.86/i386/' \
+ -e 's/i.86/i386/' \
-e 's/sparc.*/sparc/' \
-e 's/arm.*/arm/g' \
-e 's/m68k.*/m68k/' \