#!/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\.,,' \ | 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 langs=`find po/doc -type f -name 'guix-cookbook*.po' \ | sed -e 's,guix-manual\.,,' \ | xargs -n 1 -I{} basename {} .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 exec autoreconf -vfi elect> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/mcron.scm
AgeCommit message (Expand)Author
2021-11-30services: Accept <inferior-package>s in lieu of <package>s....Tobias Geerinckx-Rice
2021-06-14services: Remove deprecated service procedures....Ludovic Courtès
2020-08-26services: mcron: Validate jobs even in the presence of #:user....Ludovic Courtès
2020-08-26services: mcron: Validate jobs at build time....Ludovic Courtès
2020-01-06Adjust module autoloads....Ludovic Courtès
2019-12-08services: mcron: Add description....Robert Vollmert
2019-06-15services: Remove unneeded imports that led to cycles....Ludovic Courtès
2019-05-12services: mcron: Log to a file....Christopher Baines
2019-01-28gnu: Move most packages from guile.scm to new module....Ricardo Wurmus
2019-01-11services: Deprecate a few more service procedures....Ludovic Courtès
2018-11-13services: mcron: Fix typo in comment....Ludovic Courtès