systemd: unset RANLIB

Commit 093cc00cdd sets the RANLIB environment
variable by default, causing `make' to invoke the wrong program.
This commit is contained in:
Thomas Tuegel 2017-07-21 06:34:26 -05:00
parent 15776462b2
commit 631f6b3e11
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -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).