Fix Erlang regression, introduced 2006-11-17.

* lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Avoid M4 comment
caused by underquoting.
* NEWS: Mention this fix.
* THANKS: Update.
Reported by BJ Terry.

Signed-off-by: Eric Blake <ebb9@byu.net>
This commit is contained in:
Eric Blake 2008-09-16 06:37:51 -06:00
parent 93d9386de9
commit 20c24928ab
4 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,12 @@
2008-09-16 Eric Blake <ebb9@byu.net>
Fix Erlang regression, introduced 2006-11-17.
* lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Avoid M4 comment
caused by underquoting.
* NEWS: Mention this fix.
* THANKS: Update.
Reported by BJ Terry.
2008-09-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Improve a bit.

5
NEWS
View File

@ -1,5 +1,10 @@
GNU Autoconf NEWS - User visible changes.
* Major changes in Autoconf 2.64 (????-??-??) [stable]
Released by Eric Blake, based on git versions 2.63.*.
** AC_LANG_ERLANG works once again (regression introduced in 2.61a).
* Major changes in Autoconf 2.63 (2008-09-09) [stable]
Released by Eric Blake, based on git versions 2.62.*.

1
THANKS
View File

@ -42,6 +42,7 @@ Ben Pfaff pfaffben@debian.org
Bill Moseley moseley@hank.org
Bill Northcott w.northcott@unsw.edu.au
Bill Sommerfeld sommerfeld@apollo.hp.com
BJ Terry bjterry@gmail.com
Bob Friesenhahn bfriesen@simple.dallas.tx.us
Bob Proulx bob@proulx.com
Bob Rossi bob_rossi@cox.net

View File

@ -1,6 +1,6 @@
# This file is part of Autoconf. -*- Autoconf -*-
# Erlang/OTP language support.
# Copyright (C) 2006 Free Software Foundation, Inc.
# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -124,7 +124,7 @@ fi
m4_define([AC_LANG(Erlang)],
[ac_ext=erl
ac_compile='$ERLC $ERLCFLAGS -b beam conftest.$ac_ext >&AS_MESSAGE_LOG_FD'
ac_link='$ERLC $ERLCFLAGS -b beam conftest.$ac_ext >&AS_MESSAGE_LOG_FD ; echo "#!/bin/sh" > conftest$ac_exeext ; AS_ECHO(["\"$ERL\" -run conftest start -run init stop -noshell"]) >> conftest$ac_exeext ; chmod +x conftest$ac_exeext'
ac_link='$ERLC $ERLCFLAGS -b beam conftest.$ac_ext >&AS_MESSAGE_LOG_FD ; echo "[#]!/bin/sh" > conftest$ac_exeext ; AS_ECHO(["\"$ERL\" -run conftest start -run init stop -noshell"]) >> conftest$ac_exeext ; chmod +x conftest$ac_exeext'
])