aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorKelley Cook <kcook@gcc.gnu.org>2004-10-12 22:49:34 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2004-10-12 22:49:34 +0000
commitc8e6cd4166426fb397e178711d3fbf625a3d0b64 (patch)
treed28d0f92bcbbfb68b42c434c8da68b85b54c7640 /configure.in
parent661fc486148466ef667ef5908d832185d60b0655 (diff)
downloadgcc-c8e6cd4166426fb397e178711d3fbf625a3d0b64.zip
gcc-c8e6cd4166426fb397e178711d3fbf625a3d0b64.tar.gz
gcc-c8e6cd4166426fb397e178711d3fbf625a3d0b64.tar.bz2
configure.in (*-*-cygwin*): Supress warning if newlib not present.
2004-10-12 Kelley Cook <kcook@gcc.gnu.org> * configure.in (*-*-cygwin*): Supress warning if newlib not present. * configure: Regenerate. From-SVN: r88954
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 3e37753..0ac4304 100644
--- a/configure.in
+++ b/configure.in
@@ -590,10 +590,9 @@ case "${target}" in
target_configdirs="$target_configdirs target-libtermcap target-winsup"
noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}"
# always build newlib if winsup directory is present.
- if test -d "$srcdir/winsup"
- then
+ if test -d "$srcdir/winsup"; then
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
- else
+ elif test -d "$srcdir/newlib"; then
echo "Warning: winsup is missing so newlib can't be built."
fi