diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-08-30 18:59:50 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-08-30 18:59:50 +0000 |
commit | 14b7bcc23c699aa41a06d9ca7d7fcd337d6a927a (patch) | |
tree | b36ae3e733ef7b9b12faeadf1020b2f0e3068465 /opcodes/configure.in | |
parent | 7bead824f4f8363272929440f1c5bffedc8f15c7 (diff) | |
download | gdb-14b7bcc23c699aa41a06d9ca7d7fcd337d6a927a.tar.gz |
2004-08-30 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.in: Autoupdate to autoconf 2.59.
* aclocal.m4: Rebuild with aclocal 1.4p6.
* configure: Rebuild with autoconf 2.59.
* Makefile.in: Rebuild with automake 1.4p6 (picking up
bfd changes for autoconf 2.59 on the way).
* config.in: Rebuild with autoheader 2.59.
Diffstat (limited to 'opcodes/configure.in')
-rw-r--r-- | opcodes/configure.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/opcodes/configure.in b/opcodes/configure.in index 677ead22123..8c165fcf27e 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -1,10 +1,11 @@ dnl Process this file with autoconf to produce a configure script. dnl -AC_PREREQ(2.13) -AC_INIT(z8k-dis.c) +AC_PREREQ(2.59) +AC_INIT +AC_CONFIG_SRCDIR([z8k-dis.c]) -AC_CANONICAL_SYSTEM +AC_CANONICAL_TARGET AC_ISC_POSIX # We currently only use the version number for the name of any shared @@ -30,7 +31,7 @@ AM_PROG_LIBTOOL AC_ARG_ENABLE(targets, [ --enable-targets alternative target configurations], [case "${enableval}" in - yes | "") AC_ERROR(enable-targets option must specify target names or 'all') + yes | "") AC_MSG_ERROR([enable-targets option must specify target names or 'all']) ;; no) enable_targets= ;; *) enable_targets=$enableval ;; @@ -285,5 +286,6 @@ fi AC_SUBST(archdefs) AC_SUBST(BFD_MACHINES) -AC_OUTPUT(Makefile po/Makefile.in:po/Make-in, -[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]) +AC_CONFIG_FILES([Makefile po/Makefile.in:po/Make-in]) +AC_CONFIG_COMMANDS([default],[[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]],[[]]) +AC_OUTPUT |