Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-06-22 05:38:35 +0400
committerChristopher Faylor <me@cgf.cx>2004-06-22 05:38:35 +0400
commit10800ca5f583d5c6b75dd8799b7b392bd4d3da91 (patch)
tree01e3e082c578feeee1c54d4d31cefed509b487fb
parent0a006353b6044e087ba7348104de82076020984f (diff)
* configure.in: Check for srcdir/winsup rather than build directory winsup.
* configure: Regenerate.
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 95e1ff7af..d706d562f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure b/configure
index 378ff4784..729827f29 100755
--- a/configure
+++ b/configure
@@ -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 f1397dbe8..4ec0d21a9 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