mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-23 14:09:51 +08:00
Use AS_CASE in documented example.
* doc/autoconf.texi (Using the System Type): Use AS_CASE in example instead of raw case. Signed-off-by: William Pursell <bill.pursell@gmail.com>
This commit is contained in:
parent
5f85192b80
commit
b7b3a0029c
@ -1,3 +1,9 @@
|
||||
2008-12-28 William Pursell <bill.pursell@gmail.com> (tiny change)
|
||||
|
||||
Use AS_CASE in documented example.
|
||||
* doc/autoconf.texi (Using the System Type): Use AS_CASE in
|
||||
example instead of raw case.
|
||||
|
||||
2008-12-23 Eric Blake <ebb9@byu.net>
|
||||
|
||||
Make m4_dumpdef more useful with M4 1.6.
|
||||
|
@ -18948,11 +18948,11 @@ following would be used in a makefile to add the object to a
|
||||
program or library.
|
||||
|
||||
@example
|
||||
case $host in
|
||||
alpha*-*-*) CYCLE_OBJ=rpcc.o ;;
|
||||
i?86-*-*) CYCLE_OBJ=rdtsc.o ;;
|
||||
*) CYCLE_OBJ= ;;
|
||||
esac
|
||||
AS_CASE([$host],
|
||||
[alpha*-*-*], [CYCLE_OBJ=rpcc.o],
|
||||
[i?86-*-*], [CYCLE_OBJ=rdtsc.o],
|
||||
[CYCLE_OBJ=""]
|
||||
)
|
||||
AC_SUBST([CYCLE_OBJ])
|
||||
@end example
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user