#!/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 /> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
table class='list nowrap'>
AgeCommit message (Expand)Author
AgeCommit message (Expand)Author
2022-11-17machine: ssh: Validate 'system' field....Ludovic Courtès
2022-10-17guix: Fix typos....Julien Lepiller
2022-09-26machine: ssh: Parameterize '%current-system' early on....Ludovic Courtès
2022-03-01initrd: Use non-hyphenated kernel command-line parameter names....Maxim Cournoyer
2022-01-16machine: ssh: Add 'safety-checks?' field....Ludovic Courtès
2022-01-09machine: ssh: Open a single SSH session per machine....Ludovic Courtès
2021-06-03machine: ssh: Respect calling convention for monadic procedures....Ludovic Courtès
2021-06-01machine: ssh: Gracefully handle failure of the effectful bits....Ludovic Courtès