about summary refs log tree commit diff
path: root/pkgs/tools/networking/htpdate
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-10-10 19:01:42 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-11-05 17:10:53 -0500
commit70d91badf57bbe4cd884e5da22b14662dd36009c (patch)
tree9a69666a2218d4574dbaf8fb852371b8685ae3ec /pkgs/tools/networking/htpdate
parent5ae8f18f4d8216ec987e0f63b7d2b9a416a4ca82 (diff)
treewide: Depend on stdenv.cc.bintools instead of binutils directly
One should do this when needed executables at build time. It is more
honest and cross-friendly than refering to binutils directly.
Diffstat (limited to 'pkgs/tools/networking/htpdate')
-rw-r--r--pkgs/tools/networking/htpdate/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/htpdate/default.nix b/pkgs/tools/networking/htpdate/default.nix
index d937f3c2f0b91..47163b94dc52f 100644
--- a/pkgs/tools/networking/htpdate/default.nix
+++ b/pkgs/tools/networking/htpdate/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
 
   makeFlags = [
     "INSTALL=install"
-    "STRIP=strip"
+    "STRIP=${stdenv.cc.bintools.prefix}strip"
     "prefix=$(out)"
   ];