diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-12-20 08:01:22 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-12-20 08:01:22 +0100 |
commit | d4e98a21740903c0106b1d810894fbc2bb7850a2 (patch) | |
tree | 825b7b309199487dbbf772a2d2d765b7a92bfad2 /easy_e17.sh | |
parent | 354a97bb64235064bdf7259d1b026bef0abec1df (diff) | |
download | bin-d4e98a21740903c0106b1d810894fbc2bb7850a2.zip bin-d4e98a21740903c0106b1d810894fbc2bb7850a2.tar.gz |
easy_e17.sh: only apply *.patch patches
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-x | easy_e17.sh | 2 |
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 |