summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-05-16 13:53:26 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-05-16 13:53:26 +0000
commitc4c6c2a22430c808b101484da81b4f06114648cd (patch)
treee48490be888de3f66a7bb9ad17104ac112d6f078 /pkgs/development/libraries
parentffcdec785b769099aa04668700e94d0c8a61966a (diff)
downloadnixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.tar
nixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.tar.gz
nixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.tar.bz2
nixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.tar.lz
nixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.tar.xz
nixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.tar.zst
nixpkgs-c4c6c2a22430c808b101484da81b4f06114648cd.zip
Fixing wxGTK build in x86_64 (mesa related)
svn path=/nixpkgs/trunk/; revision=15623
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/wxGTK-2.8/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/libraries/wxGTK-2.8/default.nix b/pkgs/development/libraries/wxGTK-2.8/default.nix
index 621cf5ce3f8..0bdec709e13 100644
--- a/pkgs/development/libraries/wxGTK-2.8/default.nix
+++ b/pkgs/development/libraries/wxGTK-2.8/default.nix
@@ -34,10 +34,7 @@ stdenv.mkDerivation {
   SEARCH_INCLUDE =
     "${libXinerama}/include ${libSM}/include ${libXxf86vm}/include";
 
-  SEARCH_LIB = if (stdenv.system == "x86_64-linux") then
-    "${mesa}/lib64"
-    else 
-    "${mesa}/lib";
+  SEARCH_LIB = "${mesa}/lib";
 
   # Work around a bug in configure.
   NIX_CFLAGS_COMPILE = "-DHAVE_X11_XLIB_H=1";