]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix shared size test: add missing comma, do
authorJan Nieuwenhuizen <janneke@gnu.org>
Mon, 28 Mar 2005 15:51:01 +0000 (15:51 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Mon, 28 Mar 2005 15:51:01 +0000 (15:51 +0000)
not use debugging.

ChangeLog
stepmake/aclocal.m4

index 839a4b0bfcec0c6b0aa70a8cfd54efcf8972958b..fb0ac3a46e9576044bba6d62c1ac811f751dcd33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * stepmake/aclocal.m4: Fix shared size test: add missing comma, do
+       not use debugging.
+
 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * Documentation/user/instrument-notation.itely (String number
@@ -16,7 +21,7 @@
 
 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
 
-       * config.make.in (HAVE_LIBKPATHSEA_SO): 
+       * config.make.in (HAVE_LIBKPATHSEA_SO):
        * stepmake/aclocal.m4: Also subst HAVE_LIBKPATHSEA_SO.
 
        * lily/GNUmakefile (MODULE_LDFLAGS): Only if not HAVE_KPATHSEA_SO,
index d4c59bacc95e98622991f490d1f9954f916cce11..62989a5009cb71f781e7ab67b602e09bfa4eb1d0 100644 (file)
@@ -792,12 +792,12 @@ AC_DEFUN(STEPMAKE_KPATHSEA, [
     fi
 
     save_CFLAGS="$CFLAGS"
-    CFLAGS="-shared $CFLAGS"
+    CFLAGS=$(echo "-shared $CFLAGS" | sed -e 's/ -g//')
     AC_MSG_CHECKING([for shared libkpathsea])
     AC_TRY_LINK([#include <kpathsea/kpathsea.h>],
                  [kpse_var_expand ("\$TEXMF");],
                  [have_libkpathsea_so=maybe;
-                 shared_size=`wc -c conftest | sed 's/ .*//g'`]
+                 shared_size=`wc -c conftest | sed -e 's/ .*//g'`],
                  [have_libkpathsea_so=no])
 
     if test "$have_libkpathsea_so" = "maybe"; then