diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-10 17:31:28 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-10 17:31:28 +0100 |
commit | 3ac6403bb723a4b4f5c3ca155df61e77c4d59d6c (patch) | |
tree | ca881c80d8890dbe94ffd58ba50017ba5b5fbdcc /target/linux/patches/3.13.6/xargs.patch | |
parent | 31728d3c791ee94c4da715f259091c2b535e2275 (diff) | |
parent | f7f9e0225b9267890304b4df96e8ae0beb6e5f5f (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'target/linux/patches/3.13.6/xargs.patch')
-rw-r--r-- | target/linux/patches/3.13.6/xargs.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/patches/3.13.6/xargs.patch b/target/linux/patches/3.13.6/xargs.patch new file mode 100644 index 000000000..2c7b3df59 --- /dev/null +++ b/target/linux/patches/3.13.6/xargs.patch @@ -0,0 +1,12 @@ +diff -Nur linux-3.12.6.orig/scripts/Makefile.modpost linux-3.12.6/scripts/Makefile.modpost +--- linux-3.12.6.orig/scripts/Makefile.modpost 2013-12-20 16:51:33.000000000 +0100 ++++ linux-3.12.6/scripts/Makefile.modpost 2014-01-25 14:55:33.000000000 +0100 +@@ -60,7 +60,7 @@ + modulesymfile := $(firstword $(KBUILD_EXTMOD))/Module.symvers + + # Step 1), find all modules listed in $(MODVERDIR)/ +-MODLISTCMD := find $(MODVERDIR) -name '*.mod' | xargs -r grep -h '\.ko$$' | sort -u ++MODLISTCMD := find $(MODVERDIR) -name '*.mod' | xargs grep -h '\.ko$$' | sort -u + __modules := $(shell $(MODLISTCMD)) + modules := $(patsubst %.o,%.ko, $(wildcard $(__modules:.ko=.o))) + |