diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-12-07 14:55:55 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-12-07 20:31:39 +0100 |
commit | e1fc443474a804c1a7a8160e83259285520ee44f (patch) | |
tree | 1ec68260541635b1220a8272e086e886e51264fa /eclass | |
parent | www-client/opera-developer: Old. (diff) | |
download | gentoo-e1fc443474a804c1a7a8160e83259285520ee44f.tar.gz gentoo-e1fc443474a804c1a7a8160e83259285520ee44f.tar.bz2 gentoo-e1fc443474a804c1a7a8160e83259285520ee44f.zip |
eclass/oasis.eclass: set prefix to ED instead of using the destdir option. The latter doesnt work reliably with latest oasis versions.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/oasis.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/oasis.eclass b/eclass/oasis.eclass index 6299f28c30d3..6b1fc4fb149a 100644 --- a/eclass/oasis.eclass +++ b/eclass/oasis.eclass @@ -86,10 +86,9 @@ oasis_src_configure() { [ -n "${OASIS_BUILD_TESTS}" ] && confargs="${confargs} $(use_enable test tests)" [ -n "${OASIS_NO_DEBUG}" ] || confargs="${confargs} $(oasis_use_enable debug debug)" ${OASIS_SETUP_COMMAND:-ocaml setup.ml} -configure \ - --prefix "${EPREFIX}/usr" \ - --libdir "${EPREFIX}/usr/$(get_libdir)" \ - --docdir "${EPREFIX}${OASIS_DOC_DIR}" \ - --destdir "${D}" \ + --prefix "${ED}/usr" \ + --libdir "${ED}/usr/$(get_libdir)" \ + --docdir "${ED}${OASIS_DOC_DIR}" \ $(oasis_use_enable ocamlopt is_native) \ ${confargs} \ ${oasis_configure_opts} \ |