Changeset a86c171 in rtems


Ignore:
Timestamp:
05/24/01 20:01:10 (23 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.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r01ec6c0 ra86c171  
     12001-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * canonical-target-name.m4: Fix m4-quoting for autoconf-2.49f.
     4        * aclocal/config-subdirs.m: Fix m4-quoting for autoconf-2.49f,
     5        Add support for DOS-drive-letters.
     6
    172001-04-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • 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)
  • aclocal/config-subdirs.m4

    r01ec6c0 ra86c171  
    4646AC_DEFUN(_RTEMS_GIVEN_INSTALL,
    4747[
    48 ifdef([AC_PROVIDE_AC_PROG_INSTALL],
    49       [  case "$ac_given_INSTALL" in
    50 changequote(, )dnl
    51         [/$]*) INSTALL="$ac_given_INSTALL" ;;
    52 changequote([, ])dnl
    53         *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
    54         esac
     48ifdef([AC_PROVIDE_AC_PROG_INSTALL],[ 
     49  case "$ac_given_INSTALL" in
     50  [[\\/]]* | ?:[[\\/]]*) INSTALL="$ac_given_INSTALL" ;;
     51  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
     52  esac
    5553])dnl
    5654])
     
    7472    .) # No --srcdir option.  We are building in place.
    7573      $1=$srcdir ;;
    76     /*) # Absolute path.
     74    [[\\/]]* | ?:[[\\/]]*) # Absolute path.
    7775      $1=$srcdir/$2 ;;
    7876    *) # Relative path.
Note: See TracChangeset for help on using the changeset viewer.