summary refs log tree commit diff
path: root/pkgs/development/libraries/libtommath
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-06-05 22:54:38 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-06-05 22:54:38 -0400
commita430a5c96377ea356f24dd75754a1c9a3cd513fc (patch)
tree605430493a18b0c6757a0fb2226fd974cce85ce4 /pkgs/development/libraries/libtommath
parent9edd19631234bfdcc2ff1a267a7edc1d11f306f4 (diff)
downloadnixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.tar
nixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.tar.gz
nixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.tar.bz2
nixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.tar.lz
nixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.tar.xz
nixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.tar.zst
nixpkgs-a430a5c96377ea356f24dd75754a1c9a3cd513fc.zip
libtommatch: fix substituteInPlace
var name was changed
Diffstat (limited to 'pkgs/development/libraries/libtommath')
-rw-r--r--pkgs/development/libraries/libtommath/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libtommath/default.nix b/pkgs/development/libraries/libtommath/default.nix
index 15c392fa792..a90377dad34 100644
--- a/pkgs/development/libraries/libtommath/default.nix
+++ b/pkgs/development/libraries/libtommath/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ libtool ];
 
   postPatch = ''
-    substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool"
+    substituteInPlace makefile.shared --replace glibtool libtool
     substituteInPlace makefile_include.mk --replace "shell arch" "shell uname -m"
   '';