Changeset a86c171 in rtems for aclocal/canonical-target-name.m4


Ignore:
Timestamp:
05/24/01 20:01:10 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6b5a85ae
Parents:
01ec6c0
Message:

2001-05-16 Ralf Corsepius <corsepiu@…>

  • canonical-target-name.m4: Fix m4-quoting for autoconf-2.49f.
  • aclocal/config-subdirs.m: Fix m4-quoting for autoconf-2.49f, Add support for DOS-drive-letters.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • aclocal/canonical-target-name.m4

    r01ec6c0 ra86c171  
    1313AC_CANONICAL_SYSTEM
    1414AC_MSG_CHECKING(rtems target cpu)
    15 changequote(,)dnl
    1615case "${target}" in
    1716  # hpux unix port should go here
    18   i[34567]86-*linux*)           # unix "simulator" port
     17  i[[34567]]86-*linux*)         # unix "simulator" port
    1918        RTEMS_CPU=unix
    2019        ;;
    21   i[34567]86-*freebsd*)         # unix "simulator" port
     20  i[[34567]]86-*freebsd*)       # unix "simulator" port
    2221        RTEMS_CPU=unix
    2322        ;;
    24   i[34567]86-pc-cygwin*)        # Cygwin is just enough unix like :)
     23  i[[34567]]86-pc-cygwin*)      # Cygwin is just enough unix like :)
    2524        RTEMS_CPU=unix
    2625        ;;
     
    3231        ;;
    3332  *)
    34         RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
     33        RTEMS_CPU=`echo $target | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'`
    3534        ;;
    3635esac
    37 changequote([,])dnl
    3836AC_SUBST(RTEMS_CPU)
    3937AC_MSG_RESULT($RTEMS_CPU)
Note: See TracChangeset for help on using the changeset viewer.