diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-09-09 10:50:57 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-09-09 10:50:57 +0000 |
commit | 3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee (patch) | |
tree | 935da51d77ee95870a094a5ae927b52c2c56cd48 /make/gcc-uclibc-2.95.mk | |
parent | 7e7644913a5530adab36489fd8c499f34de7eac2 (diff) | |
download | buildroot-novena-3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee.tar.gz buildroot-novena-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/gcc-uclibc-2.95.mk')
-rw-r--r-- | make/gcc-uclibc-2.95.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/gcc-uclibc-2.95.mk b/make/gcc-uclibc-2.95.mk index ddbf118e9..90d8fc63f 100644 --- a/make/gcc-uclibc-2.95.mk +++ b/make/gcc-uclibc-2.95.mk @@ -62,7 +62,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 # # We do not wish to build the libstdc++ library provided with gcc, # since it doesn't seem to work at all with uClibc plus gcc 2.95... |