diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-25 22:39:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-25 22:39:48 +0000 |
commit | 6880ecefaaa4f2f081809b52f5f35b26b17526b0 (patch) | |
tree | 359da9b7950734bab948d23842893696b959f580 | |
parent | 0f7e52d7b2ab981ebe1ee973830450846afd255f (diff) | |
download | newlib-6880ecefaaa4f2f081809b52f5f35b26b17526b0.zip newlib-6880ecefaaa4f2f081809b52f5f35b26b17526b0.tar.gz newlib-6880ecefaaa4f2f081809b52f5f35b26b17526b0.tar.bz2 |
* configure.in: Don't assume that cinstall directory exists.
-rw-r--r-- | winsup/ChangeLog | 2 | ||||
-rwxr-xr-x | winsup/configure | 2 | ||||
-rwxr-xr-x | winsup/configure.in | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog index b5bd59c..bbc50e7 100644 --- a/winsup/ChangeLog +++ b/winsup/ChangeLog @@ -1,4 +1,4 @@ -Thu May 25 18:28:10 2000 Christopher Faylor <cgf@cygnus.com> +Thu May 25 18:39:24 2000 Christopher Faylor <cgf@cygnus.com> * configure.in: Don't assume that cinstall directory exists. diff --git a/winsup/configure b/winsup/configure index 2ddccc0..108aa36 100755 --- a/winsup/configure +++ b/winsup/configure @@ -827,7 +827,7 @@ fi SUBDIRS="cygwin w32api mingw utils doc" -test -d cinstall && SUBDIRS="$SUBDIRS cinstall" +test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall" subdirs="$SUBDIRS" echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 diff --git a/winsup/configure.in b/winsup/configure.in index 6087002..f31cfa9 100755 --- a/winsup/configure.in +++ b/winsup/configure.in @@ -58,7 +58,7 @@ AC_CANONICAL_SYSTEM LIB_AC_PROG_CC SUBDIRS="cygwin w32api mingw utils doc" -test -d cinstall && SUBDIRS="$SUBDIRS cinstall" +test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall" AC_CONFIG_SUBDIRS($SUBDIRS) AC_PROG_MAKE_SET |