aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: c0b5af7677ab01816152ff59a99c4c0e8e2eab93 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Create the build system.

set -e -x

# Generate stubs for translations.
langs=`find po/doc -type f -name '*.po' \
        | sed -e 's,guix-manual\.,,' \
        | xargs -n 1 -I{} basename {} .po`
for lang in ${langs}; do
    if [ ! -e "doc/guix.${lang}.texi" ]; then
	echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi"
	echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi"
	# Ensure .po file is newer.
	touch "po/doc/guix-manual.${lang}.po"
    fi
done

exec autoreconf -vfi
/td>Hartmut Goebel 2021-05-05guix-install.sh: Exit early if Guix is already installed....Maxim Cournoyer 2021-05-05guix-install.sh: Propose automatically fetching OpenPGP keys....Maxim Cournoyer 2021-05-05guix-install.sh: Please the shellcheck linter....Maxim Cournoyer 2021-05-01guix-install.sh: Add support for more than one signing key....Maxim Cournoyer 2021-04-29guix-install.sh: Ensure GUIX_BINARY_FILE_NAME is an absolute path....Maxim Cournoyer 2021-04-24guix-install.sh: Allow overriding the Guix binary source....Maxim Cournoyer 2021-04-14guix-install.sh: Add the build users to the 'kvm' group....Leo Famulari 2021-03-23Add powerpc64le-linux as a supported Guix architecture....Chris Marusich 2021-01-03/etc/profile.d/guix.sh: Add guix pull profile even when absent...Jakub Kądziołka 2020-12-18guix-install.sh: Add variable quoting and curly-bracketing....Vincent Legoll 2020-12-18guix-install.sh: Adjust variable use in guix_get_bin_list()....Vincent Legoll 2020-12-18guix-install.sh: Add variable quoting in sys_make_guix_available....Vincent Legoll 2020-12-18guix-install.sh: Replace tabs with spaces....Vincent Legoll 2020-11-15guix-install.sh: don't throw away release candidates when picking the latest ......Daniel Brooks 2020-10-16guix-install.sh: Check the service 'nscd' and suggest it....zimoun 2020-10-16guix-install.sh: Add symbolic links for supported shell completions....zimoun 2020-09-17guix-install.sh: Support OpenRC....Morgan Smith 2020-09-17guix-install.sh: Be POSIX-compliant....Morgan Smith 2020-09-09guix-install.sh: Quote the OpenPGP key URL....Ludovic Courtès 2020-07-16guix-install.sh: Make sure /etc/profile is sourced....Tobias Geerinckx-Rice 2020-07-16guix-install.sh: Suggest running gpg as root....Tobias Geerinckx-Rice 2020-07-14etc: Enable mount unit only if it exists....Tobias Geerinckx-Rice 2020-05-23guix-install.sh: Fix ‘systemctl not found’ error message at probe....Vincent Legoll 2020-05-23guix-install.sh: Add xz to requirements....Vincent Legoll 2020-05-17etc: Install mount unit only if it exists....Tobias Geerinckx-Rice 2020-05-16etc: Add a systemd unit to bind-mount @storedir@ read-only....Tobias Geerinckx-Rice 2020-03-22guix-install.sh: /etc/profile.d/guix.sh sources ~/.guix-profile/etc/profile....Ludovic Courtès 2020-03-22guix-install.sh: Add a trailing colon to 'INFOPATH'....Ludovic Courtès