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 | a428fdf608cd0d5b98eca96cf7464219156c3496 (patch) | |
tree | 2308adf789710967e755fb87570b0c97efb162d6 /scripts | |
parent | 7d47383397ba01a122b4588122c241a8ca9db890 (diff) | |
download | master-187ad058-a428fdf608cd0d5b98eca96cf7464219156c3496.tar.gz master-187ad058-a428fdf608cd0d5b98eca96cf7464219156c3496.tar.bz2 master-187ad058-a428fdf608cd0d5b98eca96cf7464219156c3496.zip |
scripts/patch-kernel.sh: remove -E flag to preserve empty files touched by patches
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46723 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-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 |