From: Han-Wen Nienhuys Date: Wed, 24 May 2006 15:18:16 +0000 (+0000) Subject: * configure.in (LINK_GXX_STATICALLY): use "" to allow $ X-Git-Tag: release/2.8.4~18 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b5385dd6917fb70da84a686bc3af8fa20490fa2d;p=lilypond.git * configure.in (LINK_GXX_STATICALLY): use "" to allow $ expansion. * lily/stencil-expression.cc (register_stencil_head): opps, append to cdr of static SCM object. Backport. --- diff --git a/ChangeLog b/ChangeLog index 1d1c4debe5..d05689f3d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-05-24 Han-Wen Nienhuys + + * configure.in (LINK_GXX_STATICALLY): use "" to allow $ + expansion. + + * lily/stencil-expression.cc (register_stencil_head): opps, append + to cdr of static SCM object. Backport. + 2006-05-22 Han-Wen Nienhuys * configure.in (LINK_GXX_STATICALLY): readlink for ncsb detect. diff --git a/configure.in b/configure.in index df4c940e81..b337b4f130 100644 --- a/configure.in +++ b/configure.in @@ -72,7 +72,7 @@ if test "$NCSB_DIR" != "" ; then else if test "$FCMATCH" != ""; then for style in Roman Italic "Bold Italic" Bold; do - NCSB_FILE=`$FCMATCH --verbose 'Century Schoolbook L:style=$style' | grep 'file:'` + NCSB_FILE=`$FCMATCH --verbose "Century Schoolbook L:style=$style" | grep 'file:'` NCSB_FILE=`echo $NCSB_FILE | sed 's/^.*"\(.*\)".*$/\1/g'` NCSB_FILE=`readlink -f $NCSB_FILE` diff --git a/lily/stencil-expression.cc b/lily/stencil-expression.cc index ae9127cfbb..6e51ec9b9d 100644 --- a/lily/stencil-expression.cc +++ b/lily/stencil-expression.cc @@ -17,7 +17,7 @@ void register_stencil_head (SCM symbol) heads = scm_permanent_object (scm_cons (SCM_EOL, SCM_EOL)); scm_set_object_property_x (symbol, ly_symbol2scm ("stencil-head?"), SCM_BOOL_T); - scm_set_cdr_x (heads, scm_cons (symbol, heads)); + scm_set_cdr_x (heads, scm_cons (symbol, scm_cdr (heads))); } bool