[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: detecting OS
From: |
Harlan Stenn |
Subject: |
Re: detecting OS |
Date: |
Fri, 16 Nov 2001 22:29:40 -0500 |
User-agent: |
EMH/1.10.0 SEMI/1.13.3 (Komaiko) FLIM/1.12.7 (Y.Dþzaki) XEmacs/21.1 (20 Minutes to Nikko) (i386-unknown-freebsd2.2.8) |
AC_CANONICAL_TARGET and then
case "$target" in
*-*-linux*)
...
;;
*-*-freebsd*)
...
;;
...
esac
("$target" doesn't need the quotes, but I do them anyway.)
H
- detecting OS, Helder Correia, 2001/11/16
- Re: detecting OS,
Harlan Stenn <=