diff options
author | Christopher Faylor <me@cgf.cx> | 2001-11-04 03:48:36 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-11-04 03:48:36 +0000 |
commit | e8f1743129e955c44e005de8f7ed943763c4ba25 (patch) | |
tree | 4a234a141d66f3cad1caa1896b309b20fdbff5d4 | |
parent | 15d0cbd6dfec2f8b30ae75b33c7d4980aa8bc87b (diff) | |
download | cygnal-e8f1743129e955c44e005de8f7ed943763c4ba25.tar.gz cygnal-e8f1743129e955c44e005de8f7ed943763c4ba25.tar.bz2 cygnal-e8f1743129e955c44e005de8f7ed943763c4ba25.zip |
* configure.in: Disable subauth directory test.
* configure: Regenerate.
* Makefile.in: Use MAKE variable in directory builds.
-rw-r--r-- | winsup/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/Makefile.in | 4 | ||||
-rwxr-xr-x | winsup/configure | 2 | ||||
-rwxr-xr-x | winsup/configure.in | 2 |
4 files changed, 10 insertions, 4 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog index 2dd954365..e410d1b49 100644 --- a/winsup/ChangeLog +++ b/winsup/ChangeLog @@ -1,5 +1,11 @@ 2001-11-03 Christopher Faylor <cgf@redhat.com> + * configure.in: Disable subauth directory test. + * configure: Regenerate. + * Makefile.in: Use MAKE variable in directory builds. + +2001-11-03 Christopher Faylor <cgf@redhat.com> + * Makefile.in: Add directory dependencies to ensure ordering when using 'make -jN'. diff --git a/winsup/Makefile.in b/winsup/Makefile.in index c279628c4..ef92802e8 100644 --- a/winsup/Makefile.in +++ b/winsup/Makefile.in @@ -72,12 +72,12 @@ $(SUBDIRS): $(INSTALL_SUBDIRS): @if cd ${patsubst install_%,%,$@} 2>/dev/null; then \ - make install; \ + $(MAKE) install; \ fi || exit 0 $(CLEAN_SUBDIRS): @if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \ - make clean; \ + $(MAKE) clean; \ fi || exit 0 .PRECIOUS: Makefile diff --git a/winsup/configure b/winsup/configure index 3f067712b..2d46e34fb 100755 --- a/winsup/configure +++ b/winsup/configure @@ -921,7 +921,7 @@ case "$with_cross_host" in ""|*cygwin*) test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib" test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall" - test -d $srcdir/subauth && SUBDIRS="$SUBDIRS subauth" + # test -d $srcdir/subauth && SUBDIRS="$SUBDIRS subauth" SUBDIRS="$SUBDIRS utils doc" ;; esac diff --git a/winsup/configure.in b/winsup/configure.in index 71d2c34e6..3ee598bbd 100755 --- a/winsup/configure.in +++ b/winsup/configure.in @@ -71,7 +71,7 @@ case "$with_cross_host" in ""|*cygwin*) test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib" test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall" - test -d $srcdir/subauth && SUBDIRS="$SUBDIRS subauth" + # test -d $srcdir/subauth && SUBDIRS="$SUBDIRS subauth" SUBDIRS="$SUBDIRS utils doc" ;; esac |