This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Toplevel configure.in patch for blackfin


Here's a patch to correct a syntax error in the toplevel configure.in (brackets get killed by autoconf). For GCC, I assume this is OK even now since it's a (minor) regression. For binutils, can I have permission to check this in?


Bernd


	* configure.in: Use test instead of brackets in if statement.
	* configure: Regenerate.

Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.372
diff -c -p -r1.372 configure.in
*** configure.in	8 Oct 2005 18:17:12 -0000	1.372
--- configure.in	17 Oct 2005 12:37:02 -0000
*************** case "${target}" in
*** 502,508 ****
      ;;
    bfin-*-*)
      noconfigdirs="$noconfigdirs target-libgloss gdb"
!     if [ x${is_cross_compiler} != xno ] ; then
        target_configdirs="${target_configdirs} target-bsp target-cygmon"
      fi
      ;;
--- 502,508 ----
      ;;
    bfin-*-*)
      noconfigdirs="$noconfigdirs target-libgloss gdb"
!     if test x${is_cross_compiler} != xno ; then
        target_configdirs="${target_configdirs} target-bsp target-cygmon"
      fi
      ;;

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