gpsbabel: fix build on i686
This commit is contained in:
parent
fece57da45
commit
89e22a78b7
pkgs/applications/misc/gpsbabel
|
@ -20,7 +20,10 @@ stdenv.mkDerivation rec {
|
||||||
But FOP isn't packaged yet. */
|
But FOP isn't packaged yet. */
|
||||||
|
|
||||||
preConfigure = "cd gpsbabel";
|
preConfigure = "cd gpsbabel";
|
||||||
configureFlags = [ "--with-zlib=system" ];
|
configureFlags = [ "--with-zlib=system" ]
|
||||||
|
# Floating point behavior on i686 causes test failures. Preventing
|
||||||
|
# extended precision fixes this problem.
|
||||||
|
++ stdenv.lib.optional stdenv.isi686 "CXXFLAGS=-ffloat-store";
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
|
|
Loading…
Reference in New Issue