From 3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Thu, 9 Sep 2004 10:50:57 +0000 Subject: Patch by michael tesch ... 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. --- make/gcc-uclibc-3.x.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'make/gcc-uclibc-3.x.mk') diff --git a/make/gcc-uclibc-3.x.mk b/make/gcc-uclibc-3.x.mk index cfa504998..ff44759cd 100644 --- a/make/gcc-uclibc-3.x.mk +++ b/make/gcc-uclibc-3.x.mk @@ -67,7 +67,7 @@ $(GCC_DIR)/.unpacked: $(DL_DIR)/$(GCC_SOURCE) $(GCC_DIR)/.patched: $(GCC_DIR)/.unpacked # Apply any files named gcc-*.patch from the source directory to gcc - $(SOURCE_DIR)/patch-kernel.sh $(GCC_DIR) $(SOURCE_DIR)/gcc/$(GCC_VERSION) *.patch + $(SOURCE_DIR)/patch-kernel.sh $(GCC_DIR) $(SOURCE_DIR)/gcc/$(GCC_VERSION) \*.patch # Note: The soft float situation has improved considerably with gcc 3.4.x. # We can dispense with the custom spec files, as well as libfloat for the arm case. # However, we still need a patch for arm. There's a similar patch for gcc 3.3.x -- cgit v1.2.3