Fixing a problem in the neverball build about paths, that I did not notice until

I run it.

svn path=/nixpkgs/trunk/; revision=18221
This commit is contained in:
Lluís Batlle i Rossell 2009-11-06 19:25:54 +00:00
parent 005bf71e51
commit d5f36f16c1

View File

@ -13,8 +13,8 @@ stdenv.mkDerivation rec {
dontPatchElf = true;
patchPhase = ''
sed -i -e 's@\./data@'$out/data@ share/base_config.h
sed -i -e 's@\./locale@'$out/locale@ share/base_config.h
sed -i -e 's@\./data@'$out/data@ share/base_config.h Makefile
sed -i -e 's@\./locale@'$out/locale@ share/base_config.h Makefile
sed -i -e 's@-lvorbisfile@-lvorbisfile -lX11 -lgcc_s@' Makefile
'';