summaryrefslogtreecommitdiffstats
path: root/easy_e17.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-12-20 08:01:22 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-12-20 08:01:22 +0100
commitd4e98a21740903c0106b1d810894fbc2bb7850a2 (patch)
tree825b7b309199487dbbf772a2d2d765b7a92bfad2 /easy_e17.sh
parent354a97bb64235064bdf7259d1b026bef0abec1df (diff)
downloadbin-d4e98a21740903c0106b1d810894fbc2bb7850a2.zip
bin-d4e98a21740903c0106b1d810894fbc2bb7850a2.tar.gz
easy_e17.sh: only apply *.patch patches
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-xeasy_e17.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/easy_e17.sh b/easy_e17.sh
index df4b95a..19e22fb 100755
--- a/easy_e17.sh
+++ b/easy_e17.sh
@@ -1366,7 +1366,7 @@ pkg_total=`echo "$updated_packages" | wc -w`
open_header "Apply local patches"
cd $src_path
if [ -d $src_patch_path ]; then
- for patch in $(ls -1 $src_patch_path); do
+ for patch in $(ls -1 $src_patch_path/*.patch); do
echo " - apply $patch" && patch -p 1 -N -r - < $src_patch_path/$patch
done
else