hqplayer-desktop: don't use single quotes around $out
This commit is contained in:
parent
9e49405898
commit
a48ceda40c
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ mkDerivation rec {
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for desktopFile in $out/share/applications/*; do
|
for desktopFile in $out/share/applications/*; do
|
||||||
substituteInPlace "$desktopFile" \
|
substituteInPlace "$desktopFile" \
|
||||||
--replace '/usr/bin/' '$out/bin/' \
|
--replace /usr/bin/ $out/bin/ \
|
||||||
--replace '/usr/share/doc/' '$out/share/doc/'
|
--replace /usr/share/doc/ $out/share/doc/
|
||||||
done
|
done
|
||||||
|
|
||||||
gunzip $out/share/doc/${pname}/*.gz
|
gunzip $out/share/doc/${pname}/*.gz
|
||||||
|
|
Loading…
Reference in a new issue