diff options
Diffstat (limited to '')
| -rw-r--r-- | bash/fake-symlinks.sh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/bash/fake-symlinks.sh b/bash/fake-symlinks.sh index d0c377dc..5defce35 100644 --- a/bash/fake-symlinks.sh +++ b/bash/fake-symlinks.sh @@ -141,10 +141,6 @@ ln-guix-container() { cp-if-not guix/channels.scm guix/manifest.scm } -ln-guile-files() { - cp-all build-aux/guile.am build-aux/pre-inst-env.in m4/guile.m4 -} - ln-ci() { cp-all scripts/assert-shellcheck.sh @@ -202,13 +198,19 @@ ln-base-autotools-guix-project() { ln-autotools ln-agpl - ln-guile-files ln-ci } +ln-guile-files() { + if [[ "$PROJECT" = guile* ]]; then + cp-all build-aux/guile.am build-aux/pre-inst-env.in m4/guile.m4 + fi +} + ln-texinfo-autotools-guix-project() { ln-base-autotools-guix-project "$1" ln-texinfo + ln-guile-files } ln-sphinx-autotools-guix-project() { |
