From 199e5d441fc66c466e3cc8cb201a601ca1a89d67 Mon Sep 17 00:00:00 2001 From: wolf Date: Sat, 20 Sep 2003 01:40:57 +0000 Subject: [PATCH] Fix two possible bugs. git-svn-id: https://svn.dealii.org/trunk@7999 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/aclocal.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 6cde95ec6f..e9cac03860 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -875,7 +875,7 @@ AC_DEFUN(DEAL_II_CHECK_CPU_OPTIMIZATIONS, dnl withcpu=$withval, withcpu=) AC_MSG_CHECKING(for CPU to optimize for) - case $withcpu in + case "$withcpu" in PowerPC64) AC_MSG_RESULT(PowerPC64) case $GXX_VERSION in @@ -906,6 +906,7 @@ AC_DEFUN(DEAL_II_CHECK_CPU_OPTIMIZATIONS, dnl *) AC_MSG_RESULT(none given or not recognized) + ;; esac ]) -- 2.39.5