summary refs log tree commit diff
path: root/pkgs/development/libraries/gsm
diff options
context:
space:
mode:
authorcodyopel <codyopel@gmail.com>2015-02-09 10:30:10 -0500
committercodyopel <codyopel@gmail.com>2015-02-09 10:30:10 -0500
commit700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec (patch)
tree2c336600e80a50ce879cfd6f41d5cccc4a32dbe4 /pkgs/development/libraries/gsm
parentc951d7d449a4ccae3fef92a392dd904e086415ca (diff)
downloadnixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.tar
nixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.tar.gz
nixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.tar.bz2
nixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.tar.lz
nixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.tar.xz
nixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.tar.zst
nixpkgs-700f04b8da33dc7a8ea1f5c5c1a945bf003b57ec.zip
gsm: fix include directory
Diffstat (limited to 'pkgs/development/libraries/gsm')
-rw-r--r--pkgs/development/libraries/gsm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gsm/default.nix b/pkgs/development/libraries/gsm/default.nix
index 6238f4b53b0..f13d055520b 100644
--- a/pkgs/development/libraries/gsm/default.nix
+++ b/pkgs/development/libraries/gsm/default.nix
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
   };
 
   preConfigure = ''
-    sed -e 's,$(GSM_INSTALL_ROOT)/inc,$(GSM_INSTALL_ROOT)/includes,' -i Makefile
-    mkdir -p "$out/"{bin,lib,man/man1,man/man3,include}
+    sed -e 's,$(GSM_INSTALL_ROOT)/inc,$(GSM_INSTALL_ROOT)/include/gsm,' -i Makefile
+    mkdir -p "$out/"{bin,lib,man/man1,man/man3,include/gsm}
     makeFlags="$makeFlags INSTALL_ROOT=$out"
   '';