This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: Remove redundant AC_ARG_PROGRAM.


AC_ARG_PROGRAM is redundant for bfd/configure.in and
opcodes/configure.in. As the result, we get

transform = s,^,ia64-linux-,; s,^,ia64-linux-,;

instead of

transform = s,^,ia64-linux-,;

in bfd/Makefile and opcodes/Makefile when we configure a cross
binutils for ia64-linux. Although transform is not used in bfd
and opcodes for now, we may use it in the future. Here is a patch.

H.J.
---
001-03-19  H.J. Lu  <hjl@gnu.org>

	* configure.in: Remove the redundant AC_ARG_PROGRAM.
	* configure: Rebuild.

--- bfd/configure.in.transform	Fri Mar  9 11:37:56 2001
+++ bfd/configure.in	Mon Mar 19 11:37:19 2001
@@ -76,7 +76,6 @@ AM_CONFIG_HEADER(config.h:config.in)
 if test -z "$target" ; then
     AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
 fi
-AC_ARG_PROGRAM
 
 AM_MAINTAINER_MODE
 AC_EXEEXT
--- opcodes/configure.in.transform	Tue Feb 27 10:48:49 2001
+++ opcodes/configure.in	Mon Mar 19 11:40:01 2001
@@ -69,7 +69,6 @@ AM_CONFIG_HEADER(config.h:config.in)
 if test -z "$target" ; then
     AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
 fi
-AC_ARG_PROGRAM
 
 AM_MAINTAINER_MODE
 AC_EXEEXT


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]