* configure.in: Disable subauth directory test.
* configure: Regenerate. * Makefile.in: Use MAKE variable in directory builds.
This commit is contained in:
parent
15d0cbd6df
commit
e8f1743129
|
@ -1,3 +1,9 @@
|
|||
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue