From: Felix Fietkau Date: Tue, 25 Aug 2015 07:46:32 +0000 (+0000) Subject: scripts/patch-kernel.sh: remove -E flag to preserve empty files touched by patches X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=a428fdf608cd0d5b98eca96cf7464219156c3496;p=openwrt-github%2F.git scripts/patch-kernel.sh: remove -E flag to preserve empty files touched by patches Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46723 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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