summary refs log tree commit diff
path: root/pkgs/games/gemrb
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-11-14 08:57:49 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-11-14 08:57:49 +0000
commit2e516fab70d064cc9ace75d0ded800f7c0682c6d (patch)
tree9f75286c7ed36bfd28b833fa4a810ea0222a9d7b /pkgs/games/gemrb
parent6748294477aad2a64ce25891212e640fe6ce39b1 (diff)
downloadnixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.tar
nixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.tar.gz
nixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.tar.bz2
nixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.tar.lz
nixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.tar.xz
nixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.tar.zst
nixlib-2e516fab70d064cc9ace75d0ded800f7c0682c6d.zip
Gemrb: replace the ugly workaround with a less ugly one.
svn path=/nixpkgs/trunk/; revision=24684
Diffstat (limited to 'pkgs/games/gemrb')
-rw-r--r--pkgs/games/gemrb/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/games/gemrb/default.nix b/pkgs/games/gemrb/default.nix
index ca974d63de2d..aae7241cf883 100644
--- a/pkgs/games/gemrb/default.nix
+++ b/pkgs/games/gemrb/default.nix
@@ -18,11 +18,6 @@ stdenv.mkDerivation rec {
   # Can't have -werror because of the Vorbis header files.
   cmakeFlags = "-DDISABLE_WERROR=ON -DCMAKE_VERBOSE_MAKEFILE=ON";
 
-  # !!! Ugly.  CMake passes library dependencies to the linker using
-  # the full path of the library rather than `-l...', and the
-  # ld-wrapper doesn't add the necessary `-rpath' flag.
-  NIX_LDFLAGS = "-rpath ${zlib}/lib -rpath ${libpng}/lib -rpath ${python}/lib -rpath ${openal}/lib -rpath ${SDL}/lib -rpath ${libvorbis}/lib";
-
   meta = {
     description = "A reimplementation of the Infinity Engine, used by games such as Baldur's Gate";
     homepage = http://gemrb.sourceforge.net/;