freetype: attempt to fix build for the other FreeBSD

This commit is contained in:
Vladimír Čunát 2013-04-13 23:23:18 +02:00
parent 5980282d17
commit 10d7190f2a

View File

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
CFLAGS = stdenv.lib.optionalString stdenv.isArm "-std=gnu99";
# FreeType requires GNU Make, which is not part of stdenv on FreeBSD.
buildInputs = stdenv.lib.optional (stdenv.system == "i686-freebsd") gnumake;
buildInputs = stdenv.lib.optional (!stdenv.isLinux) gnumake;
enableParallelBuilding = true;