diff options
author | Jonathan-Christofer Demay <jcdemay@gmail.com> | 2014-07-19 00:38:01 +0200 |
---|---|---|
committer | Jonathan-Christofer Demay <jcdemay@gmail.com> | 2014-07-19 00:38:01 +0200 |
commit | d73696e54434ec08a75603613fb1ece24718127f (patch) | |
tree | 8f9268d3b9f6fe8af9fefa091cd2501ab8e2140c /dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild | |
parent | sci-mathematics/apron: force j1 for make (diff) | |
download | sci-d73696e54434ec08a75603613fb1ece24718127f.tar.gz sci-d73696e54434ec08a75603613fb1ece24718127f.tar.bz2 sci-d73696e54434ec08a75603613fb1ece24718127f.zip |
Several DESTDIR fixes
Diffstat (limited to 'dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild')
-rw-r--r-- | dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild b/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild index 2a653f2dc..c28be862b 100644 --- a/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild +++ b/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild @@ -29,7 +29,7 @@ src_prepare() { } src_compile() { - DESTDIR="/" emake -j1 || die "emake failed" + emake -j1 DESTDIR="/" || die "emake failed" if use doc; then emake doc || die "emake doc failed" @@ -37,7 +37,7 @@ src_compile() { } src_install() { - DESTDIR="${D}" emake install || die "emake install failed" + emake install DESTDIR="${D}" || die "emake install failed" dodoc CHANGES CREDITS FAQ README if use doc; then |