diff options
author | 2023-09-18 00:18:59 +0200 | |
---|---|---|
committer | 2023-09-18 00:39:21 +0200 | |
commit | 41dfeea42dc365c5434c74861421f4f3c50f48d7 (patch) | |
tree | d51dddbb6d6573cd9f3d2c6f1d5d739e37100ef6 /media-libs | |
parent | media-libs/libbpg: fix implicit declaration of string function (diff) | |
download | guru-41dfeea42dc365c5434c74861421f4f3c50f48d7.tar.gz guru-41dfeea42dc365c5434c74861421f4f3c50f48d7.tar.bz2 guru-41dfeea42dc365c5434c74861421f4f3c50f48d7.zip |
media-libs/libbpg: respect offset-prefix of image directory
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libbpg/libbpg-0.9.8-r1.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media-libs/libbpg/libbpg-0.9.8-r1.ebuild b/media-libs/libbpg/libbpg-0.9.8-r1.ebuild index 5e4b64708..b287d4de6 100644 --- a/media-libs/libbpg/libbpg-0.9.8-r1.ebuild +++ b/media-libs/libbpg/libbpg-0.9.8-r1.ebuild @@ -90,8 +90,9 @@ src_compile() { } src_install() { - mkdir -p "${D}"/usr/bin - emake prefix="${D}"/usr install + mkdir -p "${ED}"/usr/bin || die + # We never called configure with --prefix="${EPREFIX}"/usr or similar + emake prefix="${ED}"/usr install if use bpgview; then dobin bpgview |