Browse Source

- autoconf/aclocal.m4 (CL_CANONICAL_HOST): Added missing changequote

environment around the patch of 2000-05-23.
master
Richard Kreckel 25 years ago
parent
commit
f0b1c402a5
  1. 5
      ChangeLog
  2. 2
      autoconf/aclocal.m4
  3. 6
      configure

5
ChangeLog

@ -1,3 +1,8 @@
2000-05-29 Richard Kreckel <kreckel@ginac.de>
* autoconf/aclocal.m4 (CL_CANONICAL_HOST): Added missing changequote
environment around the patch of 2000-05-23.
2000-05-29 Bruno Haible <haible@clisp.cons.org>
* autoconf/aclocal.m4 (CL_PROG_INSTALL): Fix typo.

2
autoconf/aclocal.m4

@ -234,9 +234,11 @@ fi
cl_cv_host="$host"
])
host="$cl_cv_host"
changequote(,)dnl
host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
changequote([,])dnl
AC_SUBST(host)dnl
AC_SUBST(host_cpu)dnl
AC_SUBST(host_vendor)dnl

6
configure

@ -1213,9 +1213,9 @@ cl_cv_host="$host"
fi
echo "$ac_t""$cl_cv_host" 1>&6
host="$cl_cv_host"
host_cpu=`echo $host | sed 's/^\(^-*\)-\(^-*\)-\(.*\)$/\1/'`
host_vendor=`echo $host | sed 's/^\(^-*\)-\(^-*\)-\(.*\)$/\2/'`
host_os=`echo $host | sed 's/^\(^-*\)-\(^-*\)-\(.*\)$/\3/'`
host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
case "$host_cpu" in

Loading…
Cancel
Save