summaryrefslogtreecommitdiffstats
path: root/easy_e17.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-12-21 09:07:19 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-12-21 09:07:19 +0100
commit1733b72dc182eefc16495ab4a60fb3037509d7c1 (patch)
tree29d16af35bb5432506cab5cca604252a938c4014 /easy_e17.sh
parent741c17d625baa4864c36f0b53d7de18703f85143 (diff)
parent76ece7e9eb13972554f5e51c01612379ccb89f63 (diff)
downloadbin-1733b72dc182eefc16495ab4a60fb3037509d7c1.zip
bin-1733b72dc182eefc16495ab4a60fb3037509d7c1.tar.gz
Merge branch 'master' of asynk.ch:bin
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-xeasy_e17.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/easy_e17.sh b/easy_e17.sh
index df4b95a..c7759fb 100755
--- a/easy_e17.sh
+++ b/easy_e17.sh
@@ -1366,8 +1366,8 @@ 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
- echo " - apply $patch" && patch -p 1 -N -r - < $src_patch_path/$patch
+ for patch in $(ls -1 $src_patch_path/*.patch); do
+ echo " - apply $patch" && patch -p 1 -N -r - < $patch
done
else
echo " - no $src_patch_path directory"