diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-08-25 07:46:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-08-25 07:46:32 +0000 |
commit | 13a095085e3e53a9e9fa4859e39bda9213a46b1b (patch) | |
tree | 12dfa5dedac6afb9e0c6f78015156f8d450f68a1 | |
parent | 59bffdaa6440a7b29ab51a0b9835611d11dad343 (diff) | |
download | upstream-13a095085e3e53a9e9fa4859e39bda9213a46b1b.tar.gz upstream-13a095085e3e53a9e9fa4859e39bda9213a46b1b.tar.bz2 upstream-13a095085e3e53a9e9fa4859e39bda9213a46b1b.zip |
scripts/patch-kernel.sh: remove -E flag to preserve empty files touched by patches
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 46723
-rwxr-xr-x | scripts/patch-kernel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/patch-kernel.sh b/scripts/patch-kernel.sh index 91753ba2fd..c2b7e72049 100755 --- a/scripts/patch-kernel.sh +++ b/scripts/patch-kernel.sh @@ -37,7 +37,7 @@ for i in ${patchdir}/${patchpattern} ; do [ -d "${i}" ] && echo "Ignoring subdirectory ${i}" && continue echo "" echo "Applying ${i} using ${type}: " - ${uncomp} ${i} | ${PATCH:-patch} -f -p1 -E -d ${targetdir} + ${uncomp} ${i} | ${PATCH:-patch} -f -p1 -d ${targetdir} if [ $? != 0 ] ; then echo "Patch failed! Please fix $i!" exit 1 |