ecopy sys-auth/pam_mktemp Reproducible: Always Actual Results: ebuild sys-auth/pam_mktemp/pam_mktemp*.ebuild test -> test successful Expected Results: portage sees new ebuild and installs correctly
Created attachment 179715 [details] emerge --info
Created attachment 179716 [details] pam_mktemp-1.0.3.ebuild
added ebuild via ecopy, ebuild test phase works, emerge failed * QA Notice: home/xaero/.local///home/xaero/.local/ double prefix * QA Notice: home/xaero/.local///home/xaero/.local/lib double prefix * QA Notice: home/xaero/.local///home/xaero/.local/lib/security double prefix * QA Notice: home/xaero/.local///home/xaero/.local/lib/security/pam_mktemp.so double prefix
darkside_ fixed patch below --- --- pam.eclass (revision 37013) +++ pam.eclass (working copy) @@ -83,10 +83,10 @@ # Returns the pam modules' directory for current implementation getpam_mod_dir() { if has_version sys-libs/pam || has_version sys-libs/openpam; then - PAM_MOD_DIR="${EPREFIX}"/$(get_libdir)/security + PAM_MOD_DIR=/$(get_libdir)/security else # Unable to find PAM implementation... defaulting - PAM_MOD_DIR="${EPREFIX}"/$(get_libdir)/security + PAM_MOD_DIR=/$(get_libdir)/security fi echo ${PAM_MOD_DIR}
added, thx