about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-07-21 06:34:26 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-07-21 15:46:40 -0500
commit631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00 (patch)
tree9886c0e795ba505e2bace943a3bc78427c0ebbb1 /pkgs/os-specific
parent15776462b22aa95c5c6ee029f9e6d030e99134ea (diff)
downloadnixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.tar
nixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.tar.gz
nixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.tar.bz2
nixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.tar.lz
nixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.tar.xz
nixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.tar.zst
nixlib-631f6b3e11c7d36bcdab2b11b5bb6ca7361a2e00.zip
systemd: unset RANLIB
Commit 093cc00cdd9d8cf31ecce5bc1dd3645c460a1b98 sets the RANLIB environment
variable by default, causing `make' to invoke the wrong program.
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/systemd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 89a08f14f9e9..8e303bee8214 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -32,7 +32,6 @@ stdenv.mkDerivation rec {
       autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
     ];
 
-
   configureFlags =
     [ "--localstatedir=/var"
       "--sysconfdir=/etc"
@@ -76,6 +75,8 @@ stdenv.mkDerivation rec {
 
   preConfigure =
     ''
+      unset RANLIB
+
       ./autogen.sh
 
       # FIXME: patch this in systemd properly (and send upstream).