diff options
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-x | easy_e17.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index 097f969..8d82d66 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -19,6 +19,7 @@ logs_path="$tmp_path/install_logs" status_path="$tmp_path/status" src_cache_path="$tmp_path/src_cache" src_path="$HOME/e17_src" +src_patch_path="local_patches" conf_files="/etc/easy_e17.conf $HOME/.easy_e17.conf $PWD/.easy_e17.conf" ctags_enabled=0 @@ -1361,6 +1362,13 @@ elif [ "$action" == "install" ]; then fi pkg_total=`echo "$updated_packages" | wc -w` +# patches +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 +done + # build/install open_header "Compilation & installation" if [ "$action" == "install" ]; then |