
Move the minor i386-specific logic to a dedicated variable so we can merge its configure logic up a level.
10 lines
176 B
Text
10 lines
176 B
Text
I386_CPPFLAGS=
|
|
case "${target}" in
|
|
i[[3456]]86-*-coff)
|
|
I386_CPPFLAGS="-DCOFF"
|
|
;;
|
|
i[[3456]]86-*-aout)
|
|
I386_CPPFLAGS="-DAOUT"
|
|
;;
|
|
esac
|
|
AC_SUBST(I386_CPPFLAGS)
|