3
0
Fork 0
forked from mirrors/nixpkgs

glibc locales: Don't assume /nix/store

svn path=/nixpkgs/trunk/; revision=30087
This commit is contained in:
Shea Levy 2011-10-28 19:49:08 +00:00
parent 4d0fb1076d
commit 3b75d96027

View file

@ -40,7 +40,7 @@ in
installPhase =
''
ensureDir "$out/lib/locale"
cp -v "$TMPDIR/nix/store/"*"/lib/locale/locale-archive" "$out/lib/locale"
cp -v "$TMPDIR/$NIX_STORE/"*"/lib/locale/locale-archive" "$out/lib/locale"
'';
meta.description = "Locale information for the GNU C Library";