summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2016-12-07 14:55:55 +0100
committerAlexis Ballier <aballier@gentoo.org>2016-12-07 20:31:39 +0100
commite1fc443474a804c1a7a8160e83259285520ee44f (patch)
tree1ec68260541635b1220a8272e086e886e51264fa /eclass
parentwww-client/opera-developer: Old. (diff)
downloadgentoo-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.eclass7
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} \