checkinstall: Fix build on i686-linux

http://hydra.nixos.org/build/4844549
This commit is contained in:
Eelco Dolstra 2013-05-03 13:43:47 +02:00
parent d21bfddc57
commit 233aca358f

View file

@ -29,11 +29,12 @@ stdenv.mkDerivation {
# Fix a `conflicting types for 'scandir'' error on Glibc 2.11.
./scandir.patch
]
++ stdenv.lib.optional (stdenv.system == "x86_64-linux")
# Force use of old memcpy so that installwatch works on Glibc <
# 2.14.
./use-old-memcpy.patch
];
./use-old-memcpy.patch;
buildInputs = [gettext];