]> git.donarmstrong.com Git - lilypond.git/commitdiff
* stepmake/aclocal.m4: Robustification for (gcc) version detection.
authorJan Nieuwenhuizen <janneke@gnu.org>
Wed, 31 May 2006 22:55:09 +0000 (22:55 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Wed, 31 May 2006 22:55:09 +0000 (22:55 +0000)
* cygwin/postinstall-lilypond.sh: Do not fail if info docs aren't
available.  This should be moved to postinstall-lilypond-doc.

ChangeLog
THANKS
cygwin/postinstall-lilypond.sh
stepmake/aclocal.m4

index 63e06f51f0a8f2f25ed857ce5a9caa47a04d9a7f..b105c3313bc3f587d240b1b1af9b738a6297955b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * stepmake/aclocal.m4: Robustification for (gcc) version detection.
+
+       * cygwin/postinstall-lilypond.sh: Do not fail if info docs aren't
+       available.  This should be moved to postinstall-lilypond-doc.
+
 2006-05-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
        * GNUmakefile.in: simplify local-WWW-post. 
diff --git a/THANKS b/THANKS
index a2b576dc8bab7861062b961d0ceaf715b77e1431..8f377e188469be0e233ca68ff01addfd48501d73 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -57,6 +57,7 @@ Keith Packard
 Orm Finnendahl
 Quentin Spencer
 Rick Hansen
+Ruud van Silfhout
 Sietse Brouwer
 Stephen Carter
 Trent Johnston
index fbffab2c3eb6c409bbb0cf091fab6df4389cd9c3..257100cf7fe47c07358737573c1c5da5f3a3b110 100644 (file)
@@ -26,4 +26,5 @@ regtool set '/root/LilyPond/shell/generate/' '&Generate PDF ...'
 regtool add '/root/LilyPond/shell/generate/command'
 regtool set '/root/LilyPond/shell/generate/command/' $ROOT'\bin\bash.exe --login -c '"'"'/usr/bin/lily-wins "%1"'"'"
 
-(cd /usr/share/info/lilypond && ln -sf ../../doc/lilypond/Documentation/user/out-www/*png .)
+# FIXME: move to new postinstall-lilypond-doc.sh
+[ -d /usr/share/info/lilypond ] && (cd /usr/share/info/lilypond && ln -sf ../../doc/lilypond/Documentation/user/out-www/*png .)
index 93e568bb6cf542030eda86ca41b8e698b5f7179b..19b9200a40d4b696cb16f319afe7f18710209d7a 100644 (file)
@@ -32,8 +32,8 @@ AC_DEFUN(STEPMAKE_GET_VERSION, [
     ## FIXME: what systems still do not have $() in /bin/sh?
     eval _ver=\"\`("$1" --version || "$1" -V) 2>&1 | grep '[0-9]\.[0-9]' \
         | head -n 1 \
-       | sed -e 's/.*[^-.0-9]\([0-9][0-9]*\.[0-9][.0-9]*\).*/\1/' \
-           -e 's/^[^.0-9]*//' -e 's/[^.0-9]*$//'\`\"
+        | sed -e 's/\([0-9][0-9]*\.[0-9][.0-9]*\).*/\1/' \
+         -e 's/\([^0-9]*\|^\) //' -e 's/[^0-9]*$//'\`\"
     if test -z "$_ver"; then
         ## If empty, try date [fontforge]
         eval _ver=\"\`("$1" --version || "$1" -V) 2>&1 | grep '[0-9]\{6,8\}' \