1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

(Module): only try to run render-bugs if it exists.

This commit is contained in:
Han-Wen Nienhuys 2007-01-03 17:23:15 +00:00
parent c6a576f766
commit 73cc2740d4
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2007-01-03 Han-Wen Nienhuys <hanwen@lilypond.org>
* autogen.sh (Module): only try to run render-bugs if it exists.
2006-11-18 Ludovic Courtès <ludovic.courtes@laas.fr> 2006-11-18 Ludovic Courtès <ludovic.courtes@laas.fr>
* GUILE-VERSION: Added `LIBGUILE_I18N_*'. * GUILE-VERSION: Added `LIBGUILE_I18N_*'.

View file

@ -31,8 +31,10 @@ ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit
# TODO: This should be moved to dist-guile # TODO: This should be moved to dist-guile
mscripts=../guile-scripts mscripts=../guile-scripts
rm -f BUGS if test -x $mscripts/render-bugs ; then
$mscripts/render-bugs > BUGS rm -f BUGS
$mscripts/render-bugs > BUGS
fi
###################################################################### ######################################################################
### update infrastructure ### update infrastructure