acl: Remove unnecessary dependency on Libtool.
svn path=/nixpkgs/branches/stdenv-updates/; revision=23373
This commit is contained in:
parent
f998ea4ff9
commit
b125bec491
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, gettext, attr, libtool}:
|
{ stdenv, fetchurl, gettext, attr }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "acl-2.2.49";
|
name = "acl-2.2.49";
|
||||||
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildNativeInputs = [gettext];
|
buildNativeInputs = [gettext];
|
||||||
buildInputs = [attr libtool];
|
buildInputs = [ attr ];
|
||||||
|
|
||||||
# Upstream use C++-style comments in C code. Remove them.
|
# Upstream use C++-style comments in C code. Remove them.
|
||||||
# This comment breaks compilation if too strict gcc flags are used.
|
# 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
|
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";
|
installTargets = "install install-lib install-dev";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user