diff options
author | 2015-11-11 21:16:08 +0000 | |
---|---|---|
committer | 2015-11-11 21:16:08 +0000 | |
commit | d08eaf3c81ade57e59af1d32e3135dfd31510077 (patch) | |
tree | 774ec0a8de30f915a89072b9d68eaf8cef961567 | |
parent | ac5169c87ee1694e7de9b8c06c321716d8564a28 (diff) | |
download | paludis-d08eaf3c81ade57e59af1d32e3135dfd31510077.tar.gz paludis-d08eaf3c81ade57e59af1d32e3135dfd31510077.tar.xz |
Give eapply some output
-rw-r--r-- | paludis/repositories/e/ebuild/6/build_functions.bash | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/paludis/repositories/e/ebuild/6/build_functions.bash b/paludis/repositories/e/ebuild/6/build_functions.bash index 8a1dfb6e1..e49bb5e73 100644 --- a/paludis/repositories/e/ebuild/6/build_functions.bash +++ b/paludis/repositories/e/ebuild/6/build_functions.bash @@ -49,6 +49,7 @@ eapply() for f in "${x}"/*.@(diff|patch) ; do [[ -e ${f} ]] || continue any=yes + echo patch -p1 -f -g0 --no-backup-if-mismatch "${options[@]}" \< "${f}" 1>&2 patch -p1 -f -g0 --no-backup-if-mismatch "${options[@]}" < "${f}" st=${?} if [[ ${st} -ne 0 ]] ; then @@ -60,6 +61,7 @@ eapply() [[ -z ${any} ]] && die "no patches found in directory ${x}" else + echo patch -p1 -f -g0 --no-backup-if-mismatch "${options[@]}" \< "${x}" 1>&2 patch -p1 -f -g0 --no-backup-if-mismatch "${options[@]}" < "${x}" st=${?} if [[ ${st} -ne 0 ]] ; then |