summary refs log tree commit diff
path: root/pkgs/development/libraries/xalanc/default.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2018-04-09 14:28:52 +0100
committerDomen Kožar <domen@dev.si>2018-04-09 14:28:52 +0100
commit2e0dfb49f7a973e8701e00c88c4e97340fa6c623 (patch)
tree1dd27192dfe54309aad7a5ea3c357d2acb90942f /pkgs/development/libraries/xalanc/default.nix
parent2ab846211c52e3d7bb26b0888c9777598e921591 (diff)
downloadnixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.tar
nixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.tar.gz
nixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.tar.bz2
nixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.tar.lz
nixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.tar.xz
nixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.tar.zst
nixpkgs-2e0dfb49f7a973e8701e00c88c4e97340fa6c623.zip
xalanc: /usr -> /
Diffstat (limited to 'pkgs/development/libraries/xalanc/default.nix')
-rw-r--r--pkgs/development/libraries/xalanc/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/xalanc/default.nix b/pkgs/development/libraries/xalanc/default.nix
index 28575f4c5d5..aeb741dbae7 100644
--- a/pkgs/development/libraries/xalanc/default.nix
+++ b/pkgs/development/libraries/xalanc/default.nix
@@ -13,12 +13,11 @@ in stdenv.mkDerivation rec {
     sha256 = "0a3a2b15vpacnqgpp6fiy1pwyc8q6ywzvyb5445f6wixfdspypjg";
   };
 
-  # TODO: should we really be putting outputs in $out/usr? I'd expect -P$out below
   configurePhase = ''
     export XALANCROOT=`pwd`/c
     cd `pwd`/c
-    mkdir -p $out/usr
-    ./runConfigure -p ${platform} -c cc -x c++ -P$out/usr
+    mkdir -p $out
+    ./runConfigure -p ${platform} -c cc -x c++ -P$out
   '';
 
   buildInputs = [ xercesc getopt ];