aboutsummaryrefslogtreecommitdiff
#!/bin/sh
# Create the build system.

set -e -x

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

autoreconf -vfi

# Replace Automake's build-aux/mdate-sh with build-aux/mdate-from-git, our
# own, reproducible version.
chmod +w build-aux/mdate-sh
rm -f build-aux/mdate-sh
ln -s mdate-from-git.scm build-aux/mdate-sh
er 2024-01-17gnu: Add linux-libre 6.7....Wilko Meyer 2023-12-18build-system: Add ‘composer-build-system’....Nicolas Graves 2023-07-23gnu: Remove linux-libre 6.5....Leo Famulari 2023-07-23gnu: Add linux-libre 6.6.1....Wilko Meyer 2023-11-08gnu: vim: Add vim packages to 'package-path' instead of 'runtime-path'....Jonathan Scoresby 2023-10-29Revert "gnu: linux-libre@6: Enable Coreboot framebuffer support (again)."...Tobias Geerinckx-Rice 2023-10-22gnu: linux-libre@6: Enable Coreboot framebuffer support (again)....Tobias Geerinckx-Rice 2023-07-23gnu: Remove linux-libre 6.4....Leo Famulari 2023-07-23gnu: Add linux-libre 6.5....Leo Famulari 2023-09-07gnu: guix-emacs: Reword docstrings....Liliana Marie Prikler 2023-09-07gnu: emacs: Reload subdirs.el files in ‘guix-emacs-autoload-packages’....Maxim Cournoyer 2023-09-07gnu: emacs: Allow producing verbose messages when loading autoloads....Maxim Cournoyer 2023-09-07gnu: emacs: Factorize a ‘guix-emacs--subdirs-files’ procedure....Maxim Cournoyer 2023-09-07gnu: emacs: Use lexical binding for guix-emacs.el startup library....Maxim Cournoyer 2023-07-23gnu: Remove linux-libre 6.3....Leo Famulari 2023-07-15gnu: Add linux-libre 6.4...Leo Famulari 2023-05-31gnu: Remove linux-libre 6.2....Leo Famulari 2023-05-16gnu: Add linux-libre 6.3....Leo Famulari