#!/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-cookbook\.,,' \ | 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 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/image.scm
AgeCommit message (Expand)Author
2023-07-07image: Prefer gpt partition table for efi images...Sergey Trofimov
2023-06-19gnu: image: Build partitions with only necessary inputs....Efraim Flashner
2023-06-14gnu: image: Add support for unformatted partitions....Efraim Flashner
2022-12-26image: Enhance compatibility of the root ext4 partition....Maxim Cournoyer
2022-12-06image: Clarify comment....Ludovic Courtès
2022-11-04system: image: Define correct docker image arch when cross building...Thiago Jung Bauermann
2022-09-25system: images: Add a TODO comment....Mathieu Othacehe
2022-09-24system: image: Add wsl2 support....Alex Griffin
2022-09-24system: image: Add tarball support....Alex Griffin
2022-09-24image: Make the operating-system field mandatory....Mathieu Othacehe