diff options
author | Christopher Faylor <cgf@alum.bu.edu> | 2004-06-22 01:37:04 +0000 |
---|---|---|
committer | Christopher Faylor <cgf@gcc.gnu.org> | 2004-06-22 01:37:04 +0000 |
commit | 6264b0a68d820604c6b85a4c093de22bef6382cf (patch) | |
tree | 5990efb4543ab1ff836548d1f2abbf9c86d8ba7a | |
parent | 8750f9cdec153095cc47c41b887bc86fda4a0e3e (diff) | |
download | gcc-6264b0a68d820604c6b85a4c093de22bef6382cf.zip gcc-6264b0a68d820604c6b85a4c093de22bef6382cf.tar.gz gcc-6264b0a68d820604c6b85a4c093de22bef6382cf.tar.bz2 |
configure.in: Check for srcdir/winsup rather than build directory winsup.
* configure.in: Check for srcdir/winsup rather than build directory winsup.
* configure: Regenerate.
From-SVN: r83473
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2004-06-21 Christopher Faylor <cgf@alum.bu.edu> + + * configure.in: Check for srcdir/winsup rather than build directory + winsup. + * configure: Regenerate. + 2004-06-17 Corinna Vinschen <vinschen@redhat.com> * configure.in: Don't build Cygwin native newlib if winsup @@ -1366,7 +1366,7 @@ 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 winsup + if test -d "$srcdir/winsup" then skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` else diff --git a/configure.in b/configure.in index f1397db..4ec0d21 100644 --- a/configure.in +++ b/configure.in @@ -586,7 +586,7 @@ 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 winsup + if test -d "$srcdir/winsup" then skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` else |