diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-25 22:28:43 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-25 22:28:43 +0000 |
commit | 0f7e52d7b2ab981ebe1ee973830450846afd255f (patch) | |
tree | 3395c3c647e74c84ca20c62cc7a6611b42b836e4 /winsup/configure.in | |
parent | 83d485ca0c0587b39799c11569350c4f1ee7cecf (diff) | |
download | newlib-0f7e52d7b2ab981ebe1ee973830450846afd255f.zip newlib-0f7e52d7b2ab981ebe1ee973830450846afd255f.tar.gz newlib-0f7e52d7b2ab981ebe1ee973830450846afd255f.tar.bz2 |
* configure.in: Don't assume that cinstall directory exists.
Diffstat (limited to 'winsup/configure.in')
-rwxr-xr-x | winsup/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/configure.in b/winsup/configure.in index 582a521..6087002 100755 --- a/winsup/configure.in +++ b/winsup/configure.in @@ -57,7 +57,8 @@ AC_CANONICAL_SYSTEM LIB_AC_PROG_CC -SUBDIRS="cygwin w32api mingw utils doc cinstall" +SUBDIRS="cygwin w32api mingw utils doc" +test -d cinstall && SUBDIRS="$SUBDIRS cinstall" AC_CONFIG_SUBDIRS($SUBDIRS) AC_PROG_MAKE_SET |