This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU M4 source repository".
http://git.sv.gnu.org/gitweb/?p=m4.git;a=commitdiff;h=e6db1ee757abb49a7e739dc70a34dc8a14562e87 The branch, master has been updated via e6db1ee757abb49a7e739dc70a34dc8a14562e87 (commit) from 118acde8f302a12d6d11cd8fb63a79e221aaf8bb (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e6db1ee757abb49a7e739dc70a34dc8a14562e87 Author: Eric Blake <[EMAIL PROTECTED]> Date: Mon Apr 21 20:57:45 2008 -0600 Simplify previous patch. * tests/m4.in: Compress assignment. Suggested by Gary V. Vaughan. Signed-off-by: Eric Blake <[EMAIL PROTECTED]> ----------------------------------------------------------------------- Summary of changes: ChangeLog | 4 ++++ tests/m4.in | 6 +----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index beb686b..f53f91a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-04-21 Eric Blake <[EMAIL PROTECTED]> + Simplify previous patch. + * tests/m4.in: Compress assignment. + Suggested by Gary V. Vaughan. + Fix --disable-shared testsuite regression from previous patch. * tests/m4.in: Export M4MODPATH, so that recursive m4 invocations will also work. diff --git a/tests/m4.in b/tests/m4.in index afdeb18..34b9604 100644 --- a/tests/m4.in +++ b/tests/m4.in @@ -33,11 +33,7 @@ else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi -if test "${M4MODPATH+set}" = set ; then - M4MODPATH="@abs_top_builddir@/modules:$M4MODPATH" -else - M4MODPATH="@abs_top_builddir@/modules" -fi +M4MODPATH="@abs_top_builddir@/modules${M4MODPATH+:$M4MODPATH}" export M4MODPATH exec "@abs_top_builddir@/src/m4" ${1+"$@"} hooks/post-receive -- GNU M4 source repository
