Fix the check for the prebuilt helpfile when xsltproc is not available. --- bitlbee-3.4/configure.orig 2015-03-25 18:09:10.000000000 -0400 +++ bitlbee-3.4/configure 2015-05-20 14:51:33.627975970 -0400 @@ -650,8 +650,8 @@ if [ "$doc" = "1" ]; then if [ ! -e doc/user-guide/help.txt ] && \ - ! type xmlto > /dev/null 2> /dev/null || \ - ! type xsltproc > /dev/null 2> /dev/null + (! type xmlto > /dev/null 2> /dev/null || \ + ! type xsltproc > /dev/null 2> /dev/null) then echo echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.' 'hidden' name='id' value='f7902a68f9b321a485f39e4e31614ba0de155ea1'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer.scm
AgeCommit message (Expand)Author
2022-08-08installer: Render the final configuration with (guix read-print)....Ludovic Courtès
2022-02-02installer: Use system-wide guix for system init....Josselin Poiret
2022-02-02installer: Make dump archive creation optional and selective....Josselin Poiret
2022-02-02installer: Use dynamic-wind to setup installer....Josselin Poiret
2022-02-02installer: Add nano to PATH....Josselin Poiret
2022-02-02installer: Add installer-specific run command process....Josselin Poiret
2022-02-02installer: Use new installer-log-line everywhere....Josselin Poiret
2022-02-02installer: Use define instead of let at top-level....Josselin Poiret
2022-02-02installer: Add crash dump upload support....Mathieu Othacehe
2022-01-14installer: Check if ci.guix.gnu.org can be reached....Mathieu Othacehe
2021-09-23installer: Support XFS....Tobias Geerinckx-Rice
2021-01-12installer: Fix crash in parameters menu....Mathieu Othacehe
2020-12-11install: Discover local substitute servers....Mathieu Othacehe
2020-10-18installer: Call setlocale after init gettext....Miguel Ángel Arruga Vivas