diff options
author | Mike Gilbert <floppym@gentoo.org> | 2021-04-03 14:27:43 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-04-03 14:27:43 -0400 |
commit | ad7062a09e939c8314ef8a796af7603fcb2dc39c (patch) | |
tree | d1c168a719308aab3613faca80af042d115fa4dc /app-accessibility | |
parent | media-libs/libgpod: add slot-operator for sg3_utils (diff) | |
download | gentoo-ad7062a09e939c8314ef8a796af7603fcb2dc39c.tar.gz gentoo-ad7062a09e939c8314ef8a796af7603fcb2dc39c.tar.bz2 gentoo-ad7062a09e939c8314ef8a796af7603fcb2dc39c.zip |
app-accessibility/brltty: avoid referencing D in src_configure
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/brltty/brltty-6.1.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app-accessibility/brltty/brltty-6.1.ebuild b/app-accessibility/brltty/brltty-6.1.ebuild index 518a31f5e70f..ac8d82d172b2 100644 --- a/app-accessibility/brltty/brltty-6.1.ebuild +++ b/app-accessibility/brltty/brltty-6.1.ebuild @@ -110,7 +110,6 @@ src_configure() { --includedir="${EPREFIX}"/usr/include --localstatedir="${EPREFIX}"/var --disable-stripping - --with-install-root="${D}" --with-writable-directory="${EPREFIX}"/run/brltty $(use_enable api) $(use_with beeper beep-package) @@ -163,12 +162,12 @@ src_install() { findlib_src_preinst fi - emake OCAML_LDCONF= install + emake INSTALL_ROOT="${D}" OCAML_LDCONF= install if use python; then python_install() { cd "Bindings/Python" || die - emake install + emake INSTALL_ROOT="${D}" install } python_foreach_impl run_in_build_dir python_install fi |