From 99a483c3015540b128f012891a332c5da8d5de5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Mon, 28 Jan 2008 08:49:02 +0000 Subject: [PATCH] #i10000# Fix for last fix (gperf version check). --- config_office/configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config_office/configure.in b/config_office/configure.in index dcacd63b7128..429bdd5039e9 100644 --- a/config_office/configure.in +++ b/config_office/configure.in @@ -3,7 +3,7 @@ dnl * vi:set sw=3 ts=3 et: dnl * dnl * Name: configure.in dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland -dnl * Date: $Date: 2008-01-28 09:27:07 $ +dnl * Date: $Date: 2008-01-28 09:49:02 $ dnl * dnl * Desc: This file serves as input for the GNU autoconf package dnl * in order to create a configure script. @@ -12,7 +12,7 @@ dnl * necessary to build OpenOffice.org dnl * dnl * dnl ******************************************************************/ -AC_REVISION( $Revision: 1.243 $ ) +AC_REVISION( $Revision: 1.244 $ ) AC_PREREQ(2.50) AC_INIT() echo "$@" >config.parms @@ -2982,7 +2982,7 @@ if test -z "$GPERF"; then AC_MSG_ERROR([gperf not found but needed. Install it.]) fi AC_MSG_CHECKING([gperf version]) -if test "`$GPERF --version | $GREP ^GNU\ gperf | $AWK '{ print $3 }' | cut -d. -f1`" -ge "3"; then +if test "`$GPERF --version | $EGREP ^GNU\ gperf | $AWK '{ print $3 }' | cut -d. -f1`" -ge "3"; then AC_MSG_RESULT([OK]) else AC_MSG_ERROR([too old, you need at least 3.0.0])