about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-08-09 15:05:30 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-08-09 15:05:30 +0000
commitbf1e734f85115778ada8188094cc2581a6f221d5 (patch)
tree53957afbdf7ee75bc623554fd8ea3a45e28231c4 /pkgs/games
parentd9ec01e77f5f344581c62ad5d26374879fc9252f (diff)
downloadnixlib-bf1e734f85115778ada8188094cc2581a6f221d5.tar
nixlib-bf1e734f85115778ada8188094cc2581a6f221d5.tar.gz
nixlib-bf1e734f85115778ada8188094cc2581a6f221d5.tar.bz2
nixlib-bf1e734f85115778ada8188094cc2581a6f221d5.tar.lz
nixlib-bf1e734f85115778ada8188094cc2581a6f221d5.tar.xz
nixlib-bf1e734f85115778ada8188094cc2581a6f221d5.tar.zst
nixlib-bf1e734f85115778ada8188094cc2581a6f221d5.zip
* Don't use the subpath operator (~) anymore, it's subsumed by normal
  concatenation (+).

svn path=/nixpkgs/trunk/; revision=6080
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/zoom/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/zoom/default.nix b/pkgs/games/zoom/default.nix
index e4823da2c426..129f431de8e1 100644
--- a/pkgs/games/zoom/default.nix
+++ b/pkgs/games/zoom/default.nix
@@ -10,5 +10,5 @@ stdenv.mkDerivation {
   };
   buildInputs = [perl expat xlibs freetype];
   # Zoom doesn't add the right directory in the include path.
-  CFLAGS = ["-I" (freetype ~ /include/freetype2)];
+  CFLAGS = ["-I" (freetype + /include/freetype2)];
 }