From 52667376e82f4e3b4f42a4c4ae84ee3b4fdd993e Mon Sep 17 00:00:00 2001 From: ellson Date: Tue, 25 Jan 2005 16:21:52 +0000 Subject: [PATCH] icc doesn't like -pipe, rpmbuild sets it, so remove with sed during configure --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 70d8e4e5e..6fa838a55 100644 --- a/configure.ac +++ b/configure.ac @@ -107,6 +107,8 @@ else *icc* ) # -Wall causes relocation errors with icc CFLAGS="${CFLAGS} -wd269" + # icc doesn't like -pipe + CFLAGS=`echo ${CFLAGS} | sed 's/ -pipe//'` ;; * ) case "${build}" in -- 2.40.0