summaryrefslogtreecommitdiffstats
path: root/aclocal/gcc-pipe.m4
diff options
context:
space:
mode:
Diffstat (limited to 'aclocal/gcc-pipe.m4')
-rw-r--r--aclocal/gcc-pipe.m414
1 files changed, 6 insertions, 8 deletions
diff --git a/aclocal/gcc-pipe.m4 b/aclocal/gcc-pipe.m4
index 3bee3e5e92..0550b60d9e 100644
--- a/aclocal/gcc-pipe.m4
+++ b/aclocal/gcc-pipe.m4
@@ -3,8 +3,6 @@ dnl $Id$
dnl
dnl Check whether the target compiler accepts -pipe
dnl
-dnl 98/02/11 Ralf Corsepius corsepiu@faw.uni-ulm.de
-dnl
AC_DEFUN(RTEMS_GCC_PIPE,
[AC_REQUIRE([RTEMS_PROG_CC])
@@ -13,17 +11,17 @@ AC_CACHE_CHECK(whether $CC_FOR_TARGET accepts --pipe,rtems_cv_gcc_pipe,
[
rtems_cv_gcc_pipe=no
if test "$rtems_cv_prog_gcc" = "yes"; then
-case "$host_os" in
- cygwin*)
- ;;
- *)
+dnl case "$host_os" in
+dnl cygwin*)
+dnl ;;
+dnl *)
echo 'void f(){}' >conftest.c
if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then
rtems_cv_gcc_pipe=yes
fi
rm -f conftest*
- ;;
-esac
+dnl ;;
+dnl esac
fi
])
])