From: nbd 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://207.154.207.93/?a=commitdiff_plain;h=a0b2af3e6d966119e07a1afe22600daa9cb4b3bb;p=openwrt.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