Author: amiddelk
Date: Thu Mar 22 10:32:32 2012
New Revision: 33350
URL: https://nixos.org/websvn/nix/?rev=33350&sc=1

Log:
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'.

Modified:
   nixpkgs/trunk/pkgs/development/ocaml-modules/extlib/default.nix

Modified: nixpkgs/trunk/pkgs/development/ocaml-modules/extlib/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/ocaml-modules/extlib/default.nix     Thu Mar 
22 10:31:10 2012        (r33349)
+++ nixpkgs/trunk/pkgs/development/ocaml-modules/extlib/default.nix     Thu Mar 
22 10:32:32 2012        (r33350)
@@ -12,7 +12,10 @@
 
   createFindlibDestdir = true;
 
-  configurePhase = "true";
+  buildPhase = ''
+    make all
+    make opt
+  '';
 
   meta = {
     homepage = "http://code.google.com/p/ocaml-extlib/";;
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to