| Summary: | sys-auth/pam_mktemp | ||
|---|---|---|---|
| Product: | Gentoo/Alt | Reporter: | Chris Brennan <xaero> |
| Component: | Prefix Support | Assignee: | Gentoo Prefix <prefix> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | x86 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
| Attachments: |
emerge --info
pam_mktemp-1.0.3.ebuild |
||
|
Description
Chris Brennan
2009-01-25 23:43:55 UTC
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 |