* Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+). svn path=/nixpkgs/trunk/; revision=6080
This commit is contained in:
@@ -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)];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user