Fix of the ocaml extlib expression. The native object files were not installed. Turns out that also the 'opt' make target must be run besides 'all'.

svn path=/nixpkgs/trunk/; revision=33350
This commit is contained in:
Arie Middelkoop 2012-03-22 10:32:32 +00:00
parent 31ffda057e
commit 3a7b035380

View file

@ -12,7 +12,10 @@ stdenv.mkDerivation {
createFindlibDestdir = true;
configurePhase = "true";
buildPhase = ''
make all
make opt
'';
meta = {
homepage = "http://code.google.com/p/ocaml-extlib/";