diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-08-22 13:53:01 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-08-22 13:53:01 +0200 |
commit | 5b34322a3ec381dd788087dd0033d188d0d2cf18 (patch) | |
tree | 9da401a88c11b12c1643b362341935fbc38e5ea5 /easy_e17.sh | |
parent | b256a2f7c1d31a9d8d8856de2d04d5d2af36d0c7 (diff) | |
download | bin-5b34322a3ec381dd788087dd0033d188d0d2cf18.zip bin-5b34322a3ec381dd788087dd0033d188d0d2cf18.tar.gz |
easy_e17.sh: use patch -p 1 -N -r - <
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 8d82d66..83273b0 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 for patch in $(ls -1 $src_patch_path); do - echo " - apply $patch" && patch -p 1 < $src_patch_path/$patch + echo " - apply $patch" && patch -p 1 -N -r - < $src_patch_path/$patch done # build/install |