teams: Adjust shebang to use 'guix repl'.
This ensures the correct Guix dependencies are always available for the script. * etc/teams.scm.in: Rename to... * etc/teams.scm: ... this. Adjust shebang. * .gitignore: No longer ignore it. * configure.ac: Do not process it with AC_CONFIG_FILES. Reported-by: Clément Lassieur <clement@lassieur.org> Fixes: https://issues.guix.gnu.org/66605 Change-Id: I7a01750c6c5f0696b6c36b1e6caa9389d9e6822c
This commit is contained in:
parent
85f934ccff
commit
4cf4dcb8b3
3 changed files with 6 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -68,7 +68,6 @@
|
|||
/doc/version.texi
|
||||
/doc/version-*.texi
|
||||
/etc/committer.scm
|
||||
/etc/teams.scm
|
||||
/etc/gnu-store.mount
|
||||
/etc/guix-daemon.cil
|
||||
/etc/guix-daemon.conf
|
||||
|
|
|
@ -281,7 +281,6 @@ AC_CONFIG_FILES([Makefile
|
|||
guix/config.scm])
|
||||
|
||||
AC_CONFIG_FILES([etc/committer.scm], [chmod +x etc/committer.scm])
|
||||
AC_CONFIG_FILES([etc/teams.scm], [chmod +x etc/teams.scm])
|
||||
AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
|
||||
AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
|
||||
[chmod +x pre-inst-env])
|
||||
|
|
8
etc/teams.scm.in → etc/teams.scm
Normal file → Executable file
8
etc/teams.scm.in → etc/teams.scm
Normal file → Executable file
|
@ -1,5 +1,9 @@
|
|||
#!@GUILE@ \
|
||||
--no-auto-compile -s
|
||||
#!/bin/sh
|
||||
# Extra care is taken here to ensure this script can run in most environments,
|
||||
# since it is invoked by 'git send-email'.
|
||||
pre_inst_env_maybe=
|
||||
command -v guix > /dev/null || pre_inst_env_maybe=./pre-inst-env
|
||||
exec $pre_inst_env_maybe guix repl -- "$0" "$@"
|
||||
!#
|
||||
|
||||
;;; GNU Guix --- Functional package management for GNU
|
Loading…
Reference in a new issue