1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

acl: Remove unnecessary dependency on Libtool.

svn path=/nixpkgs/branches/stdenv-updates/; revision=23373
This commit is contained in:
Ludovic Courtès 2010-08-23 18:29:39 +00:00
parent f998ea4ff9
commit b125bec491

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, gettext, attr, libtool}:
{ stdenv, fetchurl, gettext, attr }:
stdenv.mkDerivation rec {
name = "acl-2.2.49";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
buildNativeInputs = [gettext];
buildInputs = [attr libtool];
buildInputs = [ attr ];
# Upstream use C++-style comments in C code. Remove them.
# This comment breaks compilation if too strict gcc flags are used.
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
sed -e '/^\/\//d' -i include/acl.h
'';
configureFlags = "MAKE=make LIBTOOL=libtool MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ZIP=gzip ECHO=echo SED=sed AWK=gawk";
configureFlags = "MAKE=make MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ZIP=gzip ECHO=echo SED=sed AWK=gawk";
installTargets = "install install-lib install-dev";