AC_CANONICAL_TARGET and then
case "$target" in
*-*-linux*)
...
;;
*-*-freebsd*)
...
;;
...
esac
("$target" doesn't need the quotes, but I do them anyway.)
H
AC_CANONICAL_TARGET and then
case "$target" in
*-*-linux*)
...
;;
*-*-freebsd*)
...
;;
...
esac
("$target" doesn't need the quotes, but I do them anyway.)
H