aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Horodniceanu <a.horodniceanu@proton.me>2024-04-20 22:33:27 +0300
committerAndrei Horodniceanu <a.horodniceanu@proton.me>2024-04-20 22:33:27 +0300
commitc1bdf245f2a8f82cd24512f18f72eee1f5052b61 (patch)
tree19e92234b98c81506d43b64ae150b1723cb81098
parentnet-misc/onedrivegui: drop 1.0.3, add 1.0.3-r1 (diff)
downloaddlang-c1bdf245f2a8f82cd24512f18f72eee1f5052b61.tar.gz
dlang-c1bdf245f2a8f82cd24512f18f72eee1f5052b61.tar.bz2
dlang-c1bdf245f2a8f82cd24512f18f72eee1f5052b61.zip
dmd-r1.eclass: Fix paths in pkg_postinst elog messages
Signed-off-by: Andrei Horodniceanu <a.horodniceanu@proton.me>
-rw-r--r--eclass/dmd-r1.eclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/dmd-r1.eclass b/eclass/dmd-r1.eclass
index 802e820..90459c2 100644
--- a/eclass/dmd-r1.eclass
+++ b/eclass/dmd-r1.eclass
@@ -331,8 +331,9 @@ dmd-r1_src_install() {
dmd-r1_pkg_postinst() {
"${EROOT}"/usr/bin/eselect dlang update dmd
- use examples && elog "Examples can be found in: ${dmd_prefix}/samples"
- use doc && elog "HTML documentation is in: /usr/share/doc/${PF}/html"
+ use examples &&
+ elog "Examples can be found in: ${EPREFIX}/usr/lib/${PN}/${SLOT}/samples"
+ use doc && elog "HTML documentation is in: ${EPREFIX}/usr/share/doc/${PF}/html"
optfeature "additional D development tools" "dev-util/dlang-tools"
}