* Don't use the subpath operator (~) anymore, it's subsumed by normal

concatenation (+).

svn path=/nixpkgs/trunk/; revision=6080
This commit is contained in:
Eelco Dolstra
2006-08-09 15:05:30 +00:00
parent d9ec01e77f
commit bf1e734f85
9 changed files with 13 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ stdenv.mkDerivation {
];
# So that configure can find `preloadable_libintl.so'.
LD_LIBRARY_PATH = gettext ~ "/lib";
LD_LIBRARY_PATH = gettext + /lib;
inherit gettext;
}

View File

@@ -15,7 +15,7 @@ stdenv.mkDerivation {
];
# So that configure can find `preloadable_libintl.so'.
LD_LIBRARY_PATH = gettext ~ "/lib";
LD_LIBRARY_PATH = gettext + /lib;
inherit gettext;
}