mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
firefoxWrapper: fix typo
Accidentally tried to hardlink a directory! Should have been `ln -s` all along. Affects non-Firefox browsers that use firefoxWrapper.
This commit is contained in:
parent
5b7837c0d3
commit
04622fe3ba
|
@ -60,7 +60,7 @@ stdenv.mkDerivation {
|
|||
|
||||
if [ -e "${browser}/share/icons" ]; then
|
||||
mkdir -p "$out/share"
|
||||
ln "${browser}/share/icons" "$out/share/icons"
|
||||
ln -s "${browser}/share/icons" "$out/share/icons"
|
||||
else
|
||||
mkdir -p "$out/share/icons/hicolor/128x128/apps"
|
||||
ln -s "$out/lib/$libdirbasename/browser/icons/mozicon128.png" \
|
||||
|
|
Loading…
Reference in a new issue