olena-2.0-95-gcc209cfc build-aux/texi2dvi: Fix Dash incompatibility.

--- ChangeLog | 4 ++++ build-aux/texi2dvi | 13 ++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c82c0b..5593360 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-01-30 Guillaume Lazzara <z@lrde.epita.fr> + + * build-aux/texi2dvi: Fix Dash incompatibility. + 2012-02-27 Guillaume Lazzara <z@lrde.epita.fr> Improve main documentation. diff --git a/build-aux/texi2dvi b/build-aux/texi2dvi index 7d1f2ab..e01db32 100755 --- a/build-aux/texi2dvi +++ b/build-aux/texi2dvi @@ -131,11 +131,14 @@ test -n "$TEX" && test -d "$TEX" && unset TEX } test_local test $foo = bar -) || local () { - case $1 in - *=*) eval "$1";; - esac -} +) || +eval ' + local () { + case $1 in + *=*) eval "$1";; + esac + } +' # cd_orig -- 1.7.2.5
participants (1)
-
Guillaume Lazzara