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
6f93d58f263e238d4eb1cf'>gnu: ci: Build tuned packages for common baselines....Efraim Flashner 2023-12-12ci: Don't cross compile to avr....Efraim Flashner 2023-09-20image: Introduce the mbr-hybrid-raw image type....Mathieu Othacehe 2023-08-21ci: Really honor system type for manifests....Ludovic Courtès 2023-08-21ci: Honor user-specific systems for manifests....Ludovic Courtès 2023-08-18gnu: commencement: Use system in %final-inputs....Christopher Baines 2023-04-18ci: Add 'gdb-minimal' to the "core" package set....Ludovic Courtès 2023-03-09ci: Update the list of GCC versions for the 'core' subset....Ludovic Courtès 2022-10-22Remove now unnecessary uses of (guix grafts)....Ludovic Courtès 2022-10-13ci: Honor the system passed to image->job....Mathieu Othacehe 2022-10-11Revert "guix system: Remove unused 'read-operating-system' procedure."...Ludovic Courtès 2022-09-24gnu: Add compression module....Mathieu Othacehe 2022-08-17ci: Fix the images specification....Mathieu Othacehe 2022-08-09build-system: Add 'channel-build-system'....Ludovic Courtès 2022-08-05guix system: Remove unused 'read-operating-system' procedure....Ludovic Courtès 2022-05-25Move (gnu platform) and (gnu platforms ...) to guix/....Josselin Poiret 2022-05-22ci: Do not rely on hardcoded cross-targets lists....Mathieu Othacehe 2022-01-01ci: Add extra jobs for tunable packages....Ludovic Courtès