treewide: Mass replace 'xz}/bin' to refer the 'bin' output

This commit is contained in:
Tuomas Tynkkynen
2016-02-01 20:46:28 +02:00
parent 5dfcafb205
commit e97e690244
4 changed files with 5 additions and 5 deletions
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
postPatch = ''
sed -e 's|"gzip"|"${gzip}/bin/gzip"|' \
-e 's|"bzip2"|"${bzip2.bin}/bin/bzip2"|' \
-e 's|"xz"|"${xz}/bin/xz"|' \
-e 's|"xz"|"${xz.bin}/bin/xz"|' \
-i ui-snapshot.c
'';