diff options
| author | Sandro <sandro.jaeckel@gmail.com> | 2021-05-31 03:00:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-31 03:00:57 +0200 |
| commit | a2e86da944f019807df62eccf9dcb778a330e8ce (patch) | |
| tree | 0ea4c647851dddf6e2b7dbb6042098654f7c5ce6 | |
| parent | Merge pull request #125009 from NixOS/backport-124851-to-release-21.05 (diff) | |
| parent | sageWithDoc: fix documentation symlinks (diff) | |
| download | nixpkgs-a2e86da944f019807df62eccf9dcb778a330e8ce.tar.gz | |
Merge pull request #124984 from NixOS/backport-124980-to-release-21.05
[Backport release-21.05] sageWithDoc: fix documentation symlinks
| -rw-r--r-- | pkgs/applications/science/math/sage/sagedoc.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/sage/sagedoc.nix b/pkgs/applications/science/math/sage/sagedoc.nix index f4a8bf19b69c..d53947d806d1 100644 --- a/pkgs/applications/science/math/sage/sagedoc.nix +++ b/pkgs/applications/science/math/sage/sagedoc.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { mv html/en/_static{,.tmp} for _dir in `find -name _static` ; do rm -r $_dir - ln -s html/en/_static $_dir + ln -rs html/en/_static $_dir done mv html/en/_static{.tmp,} ''; |
