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 | 979273e36c108e00158bb82a921e4d662d2b27ce (patch) | |
tree | e44952823e1ac5acfa48d57541e068de4eb7b61b /opcodes/configure.in | |
parent | 5464f5a16efb738156e82cff22d1101b21026608 (diff) | |
download | gdb-979273e36c108e00158bb82a921e4d662d2b27ce.zip gdb-979273e36c108e00158bb82a921e4d662d2b27ce.tar.gz gdb-979273e36c108e00158bb82a921e4d662d2b27ce.tar.bz2 |
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 677ead2..8c165fc 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 |