URL: https://svn.lrde.org/svn/lrde-tools/trunk
ChangeLog: 2007-07-23 Florent DHalluin d-halluin@lrde.epita.fr
Change Automake version req. and config dir. * bootstrap.sh: Change version requirements for Autoconf and Automake to latest (AC 2.61, AM 1.10). Change configuration directory from config to build-aux.
* Makefile.am, * configure.ac: Change configuration directory from config to build-aux.
Makefile.am | 2 +- bootstrap.sh | 2 +- configure.ac | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-)
Index: trunk/bootstrap.sh =================================================================== --- trunk/bootstrap.sh (revision 432) +++ trunk/bootstrap.sh (revision 433) @@ -1,6 +1,6 @@ #! /bin/sh
-CONFDIR=`dirname $0`"/config" +CONFDIR=`dirname $0`"/build-aux" [[ -d $CONFDIR ]] || mkdir $CONFDIR
autoreconf -f -v -i Index: trunk/configure.ac =================================================================== --- trunk/configure.ac (revision 432) +++ trunk/configure.ac (revision 433) @@ -15,10 +15,10 @@ # the Free Software Foundation, 59 Temple Place - Suite 330, Boston, # MA 02111-1307, USA.
-AC_PREREQ([2.57]) +AC_PREREQ([2.61]) AC_INIT([LrdeTools], [0.01], [lrde@lrde.epita.fr]) -AC_CONFIG_AUX_DIR([config]) -AM_INIT_AUTOMAKE([1.8.4 dist-bzip2 no-dist-gzip]) +AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE([1.10 dist-bzip2 no-dist-gzip])
# Ask for config.h. AM_CONFIG_HEADER([config.h]) Index: trunk/Makefile.am =================================================================== --- trunk/Makefile.am (revision 432) +++ trunk/Makefile.am (revision 433) @@ -17,7 +17,7 @@
SUBDIRS = lib src prcs changelogs prcs2svn doc
-ACLOCAL_AMFLAGS = -I config +ACLOCAL_AMFLAGS = -I build-aux
## -------------------- ##