From 34e582869ed483301eed07ee7630d9f17c6e184c Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 19 Sep 2003 23:14:51 +0000 Subject: [PATCH] Fix typo. git-svn-id: https://svn.dealii.org/trunk@7993 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/aclocal.m4 | 2 +- deal.II/configure | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index c40d1838b2..bcae15ad7d 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -662,7 +662,7 @@ AC_DEFUN(DEAL_II_DETERMINE_F77_BRAND, dnl dnl notably the IBM compilers have the bad habit of dumping dnl all of their helptexts here, so only consider the first dnl 10 lines. Otherwise we'll have a problem later on when - dnl we do things like "echo $F&&_VERSION_STRING | grep ..." and + dnl we do things like "echo $F77_VERSION_STRING | grep ..." and dnl the shell says that we exceeded the limit for the length of dnl command lines :-( F77_VERSION_STRING="`($F77 -v 2>&1) | head -10`" diff --git a/deal.II/configure b/deal.II/configure index 30a5396625..a18ff47362 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.155 . +# From configure.in Revision: 1.156 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.57. # @@ -6543,7 +6543,8 @@ done if test "x$F77" != "x" ; then if test "x$F77" != "x" ; then - F77_VERSION_STRING="`($F77 -v 2>&1)`" + + F77_VERSION_STRING="`($F77 -v 2>&1) | head -10`" if test -n "`echo $F77_VERSION_STRING | grep \"GNU F77\"`" -o \ -n "`echo $F77_VERSION_STRING | grep \"gcc version\"`" ; then G77_VERSION_STRING="`($F77 -v 2>&1) | grep \"gcc version\"`" @@ -7245,10 +7246,16 @@ echo $ECHO_N "checking for CPU to optimize for... $ECHO_C" >&6 echo "${ECHO_T}PowerPC64" >&6 case $GXX_VERSION in gcc*) - CXXFLAGSG="$CXXFLAGSG -maix64" + CXXFLAGSG="$CXXFLAGSG -maix64" CXXFLAGSO="$CXXFLAGSO -maix64 -mpowerpc64 -mcpu=powerpc64 -mtune=powerpc64" - AR="$AR -X 64" + + CXXFLAGSG="$CXXFLAGSG -mminimal-toc" + CXXFLAGSO="$CXXFLAGSO -mminimal-toc" + + AR="$AR -X 64" LDFLAGS="$LDFLAGS -maix64" + + LIBS="$LIBS -lpthread ;; esac ;; -- 2.39.5