summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@lilypond.org>2007-01-03 17:23:15 +0000
committerHan-Wen Nienhuys <hanwen@lilypond.org>2007-01-03 17:23:15 +0000
commit73cc2740d456a5d50c0a140748a8da2cc9b283c0 (patch)
tree64535d852d335028ea6a954f7e06a3663882a56e
parentc6a576f7669b27c05405fe65abca015d50a01c1a (diff)
downloadguile-73cc2740d456a5d50c0a140748a8da2cc9b283c0.tar.gz
(Module): only try to run render-bugs if it exists.
-rw-r--r--ChangeLog4
-rwxr-xr-xautogen.sh6
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 033d75140..20476aaca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
* GUILE-VERSION: Added `LIBGUILE_I18N_*'.
diff --git a/autogen.sh b/autogen.sh
index 90dc4805f..18e639b8c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -31,8 +31,10 @@ ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit
# TODO: This should be moved to dist-guile
mscripts=../guile-scripts
-rm -f BUGS
-$mscripts/render-bugs > BUGS
+if test -x $mscripts/render-bugs ; then
+ rm -f BUGS
+ $mscripts/render-bugs > BUGS
+fi
######################################################################
### update infrastructure