diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2004-06-22 01:38:35 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2004-06-22 01:38:35 +0000 |
commit | 929ba6e7ec15a3279678ba2841eb174f27761175 (patch) | |
tree | bfc7b6519eddb2c4a19c1dc72085c551b97ce15b | |
parent | f10683bb26f21627c8d542d8c85518151de278f5 (diff) | |
download | fsf-binutils-gdb-929ba6e7ec15a3279678ba2841eb174f27761175.zip fsf-binutils-gdb-929ba6e7ec15a3279678ba2841eb174f27761175.tar.gz fsf-binutils-gdb-929ba6e7ec15a3279678ba2841eb174f27761175.tar.bz2 |
* configure.in: Check for srcdir/winsup rather than build directory winsup.
* configure: Regenerate.
-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 |