From: Kevin M. Rosenberg Date: Fri, 31 Jan 2003 18:53:59 +0000 (+0000) Subject: r3903: Auto commit for Debian build X-Git-Tag: debian-4.5.3-3~106 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=c411affdefe8ca2af91a957e7ad04953f7b838e9 r3903: Auto commit for Debian build --- diff --git a/configure b/configure index c6f9c90..4e1d019 100755 --- a/configure +++ b/configure @@ -7908,7 +7908,7 @@ if test "${with_mcpu+set}" = set; then fi; -if "$withval" == "" || "$withval" == "no" ; then +if test "$withval" == "" -o test "$withval" == "no" -o test "$withval" == "yes" ; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 else diff --git a/configure.ac b/configure.ac index c2851d8..f2eae43 100644 --- a/configure.ac +++ b/configure.ac @@ -246,7 +246,7 @@ AC_MSG_CHECKING([for CPU specification]) AC_ARG_WITH(mcpu, [ --with-mcpu[=CPU] Set name of CPU for gcc -mcpu]) -if test "$withval" == "" -o test "$withval" == "no" ; then +if test "$withval" == "" -o test "$withval" == "no" -o test "$withval" == "yes" ; then AC_MSG_RESULT([no]) else AC_MSG_RESULT([$withval])