summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2012-07-26 14:21:40 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2012-07-26 14:21:40 +0000
commit12ac0e92350441cbe99e3986cd5f44bd157cc6e7 (patch)
tree8fcbe40dc92d6326078dea1bb5507554521671f3
parentb8fe2253487494d1f57a6d2c449a391746d9f1eb (diff)
downloadmpfr-12ac0e92350441cbe99e3986cd5f44bd157cc6e7.tar.gz
[configure.ac] Replaced "sed" by "$SED" and "grep" by "$EGREP".
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/3.1@8361 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--configure.ac32
1 files changed, 16 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac
index e83786c32..7ffd009ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -516,26 +516,26 @@ fi
dnl Remove also many MACROS (AC_DEFINE) which are unused by MPFR
dnl and polluate (and slow down because libtool has to parse them) the build.
if test -f confdefs.h; then
- sed '/#define PACKAGE_/d' <confdefs.h >confdefs.tmp
- sed '/#define HAVE_STRING/d' <confdefs.tmp >confdefs.h
- sed '/#define HAVE_ALLOCA /d' <confdefs.h >confdefs.tmp
- sed '/#define HAVE_DLFCN_H/d' <confdefs.tmp >confdefs.h
- sed '/#define HAVE_MEM/d' <confdefs.h >confdefs.tmp
- sed '/#define STDC_HEADERS/d' <confdefs.tmp >confdefs.h
- sed '/#define HAVE_STRTOL/d' <confdefs.h >confdefs.tmp
- sed '/#define HAVE_STDLIB_H/d' <confdefs.tmp >confdefs.h
- sed '/#define HAVE_UNISTD_H/d' <confdefs.h >confdefs.tmp
- sed '/#define HAVE_STDC_HEADERS/d' <confdefs.tmp >confdefs.h
- sed '/#define HAVE_LONG_DOUBLE/d' <confdefs.h >confdefs.tmp
- sed '/#define HAVE_SYS_STAT_H/d' <confdefs.tmp >confdefs.h
- sed '/#define HAVE_SYS_TYPES_H/d' <confdefs.h >confdefs.tmp
- sed '/#define PROTOTYPES/d' <confdefs.tmp >confdefs.h
- sed '/#define __PROTOTYPES/d' <confdefs.h >confdefs.tmp
+ $SED '/#define PACKAGE_/d' <confdefs.h >confdefs.tmp
+ $SED '/#define HAVE_STRING/d' <confdefs.tmp >confdefs.h
+ $SED '/#define HAVE_ALLOCA /d' <confdefs.h >confdefs.tmp
+ $SED '/#define HAVE_DLFCN_H/d' <confdefs.tmp >confdefs.h
+ $SED '/#define HAVE_MEM/d' <confdefs.h >confdefs.tmp
+ $SED '/#define STDC_HEADERS/d' <confdefs.tmp >confdefs.h
+ $SED '/#define HAVE_STRTOL/d' <confdefs.h >confdefs.tmp
+ $SED '/#define HAVE_STDLIB_H/d' <confdefs.tmp >confdefs.h
+ $SED '/#define HAVE_UNISTD_H/d' <confdefs.h >confdefs.tmp
+ $SED '/#define HAVE_STDC_HEADERS/d' <confdefs.tmp >confdefs.h
+ $SED '/#define HAVE_LONG_DOUBLE/d' <confdefs.h >confdefs.tmp
+ $SED '/#define HAVE_SYS_STAT_H/d' <confdefs.tmp >confdefs.h
+ $SED '/#define HAVE_SYS_TYPES_H/d' <confdefs.h >confdefs.tmp
+ $SED '/#define PROTOTYPES/d' <confdefs.tmp >confdefs.h
+ $SED '/#define __PROTOTYPES/d' <confdefs.h >confdefs.tmp
mv confdefs.tmp confdefs.h
fi
-if grep -q -e '-dev$' $srcdir/VERSION; then
+if $EGREP -q -e '-dev$' $srcdir/VERSION; then
AC_SUBST([DATAFILES])dnl
DATAFILES=`echo \`$SED -n \
's/^ *data_check *("\(data\/[[^"]]*\)".*/tests\/\1/p' \