From fada18edd8905f3321fd1719b1c0a46c66d214af Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Wed, 27 Mar 2024 06:29:25 +0100 Subject: [PATCH] scilab: Better debugging in compilerDetection.sh. --- .../dynamic_link/src/scripts/compilerDetection.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/scilab/modules/dynamic_link/src/scripts/compilerDetection.sh b/scilab/modules/dynamic_link/src/scripts/compilerDetection.sh index 0a22a695555..ead86eb58ac 100755 --- a/scilab/modules/dynamic_link/src/scripts/compilerDetection.sh +++ b/scilab/modules/dynamic_link/src/scripts/compilerDetection.sh @@ -18,10 +18,16 @@ if test -x "$(which gcc 2>/dev/null)"; then fi # Relaunch configure if files are missing -if test ! -s Makefile.orig -o ! -s libtool; then +if test ! -s Makefile.orig -o ! -s libtool; then echo "Detection of C/C++/Fortran Compilers" ./configure --disable-static --disable-dependency-tracking "$@" - mv Makefile Makefile.orig -else + configure_exit_status=$? + if [ $configure_exit_status -ne 0 ]; then + cat config.log + exit $configure_exit_status + else + mv Makefile Makefile.orig + fi +else echo "Detection of compilers already done" fi -- 2.41.0 8e69824a9027a'>treecommitdiff
path: root/gnu/packages/enchant.scm
AgeCommit message (Expand)Author
2023-01-04gnu: hunspell: Move hunspell and dictionaries to hunspell module....Consolidate hunspell and its dictionaries into the (gnu packages hunspell) module instead of having them scattered about. * gnu/packages/aspell.scm (aspell-word-list, define-word-list-dictionary, hunspell-dict-{en, en-au, en-gb, en-gb-ize, en-us}): Remove variables. * gnu/packages/libreoffice.scm (hunspell, dicollecte-french-dictionary, define-french-dictionary, hunspell-dict-fr-{classique, moderne, réforme, toutes-variantes}, hunspell-dict-pl, hunspell-dict-de, hunspell-dict-hu): Remove variables. * gnu/packages/hunspell.scm (hunspell, dicollecte-french-dictionary, define-french-dictionary, hunspell-dict-fr-{classique, moderne, réforme, toutes-variantes}, hunspell-dict-pl, hunspell-dict-de, hunspell-dict-hu, aspell-word-list, define-word-list-dictionary, hunspell-dict-{en, en-au, en-gb, en-gb-ize, en-us}): Add variables. (hunspell-dictionary): Explicitly declare upstream libreoffice version to prevent circular dependency. * gnu/packages/ebook.scm, gnu/packages/enchant.scm, gnu/packages/freedesktop.scm, gnu/packages/gnuzilla.scm, gnu/packages/kde-frameworks.scm, gnu/packages/messaging.scm, gnu/packages/scribus.scm, gnu/packages/task-management.scm, gnu/packages/telegram.scm, gnu/packages/tex.scm, gnu/packages/text-editors.scm, gnu/packages/video.scm: Adjust module imports. Brian Cully
2022-09-15gnu: catch-framework2: Rename variable to catch2....Automated with: git grep -l catch-framework2 | xargs sed 's/catch-framework2/catch2/g' -i Maxim Cournoyer