aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2016-03-17 21:41:07 +0000
committerHauke Mehrtens <hauke@openwrt.org>2016-03-17 21:41:07 +0000
commit7e0f1bfdc44444063d493255a0c445de67015723 (patch)
tree32e3614b5117813c28f75172bcbcb72654dbbb95 /target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch
parent7f6af9c8c59afd22c97fbb0151e2bc0f5f3ceefd (diff)
downloadmaster-187ad058-7e0f1bfdc44444063d493255a0c445de67015723.tar.gz
master-187ad058-7e0f1bfdc44444063d493255a0c445de67015723.tar.bz2
master-187ad058-7e0f1bfdc44444063d493255a0c445de67015723.zip
kernel: update kernel 4.4 to version 4.4.6
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@49032 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch')
-rw-r--r--target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch b/target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch
index 619a44b5ce..cb65ee360c 100644
--- a/target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch
+++ b/target/linux/generic/patches-4.4/010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch
@@ -16,7 +16,7 @@ Signed-off-by: Felix Fietkau <nbd@openwrt.org>
# extract linker version number from stdin and turn into single number
+exec awk '
{
- gsub(".*)", "");
+ gsub(".*\\)", "");
split($1,a, ".");
print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
exit