diff options
-rw-r--r-- | paludis/repositories/gentoo/ebuild/pkg_pretend.bash | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/paludis/repositories/gentoo/ebuild/pkg_pretend.bash b/paludis/repositories/gentoo/ebuild/pkg_pretend.bash index dc95d0c..ee2f63b 100644 --- a/paludis/repositories/gentoo/ebuild/pkg_pretend.bash +++ b/paludis/repositories/gentoo/ebuild/pkg_pretend.bash @@ -28,6 +28,7 @@ ebuild_f_pretend() elif hasq "pretend" ${SKIP_FUNCTIONS} ; then ebuild_section "Skipping pkg_pretend (SKIP_FUNCTIONS)" else + echo if [[ $(type -t pre_pkg_pretend ) == "function" ]] ; then pre_pkg_pretend fi @@ -37,9 +38,9 @@ ebuild_f_pretend() if [[ $(type -t post_pkg_pretend ) == "function" ]] ; then post_pkg_pretend fi + echo fi - [[ -z "${PALUDIS_DO_NOTHING_SANDBOXY}" ]] && SANDBOX_WRITE="${old_sandbox_write}" true } |