* 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>
|
2001-11-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* Makefile.in: Add directory dependencies to ensure ordering when using
|
* Makefile.in: Add directory dependencies to ensure ordering when using
|
||||||
|
|
|
@ -72,12 +72,12 @@ $(SUBDIRS):
|
||||||
|
|
||||||
$(INSTALL_SUBDIRS):
|
$(INSTALL_SUBDIRS):
|
||||||
@if cd ${patsubst install_%,%,$@} 2>/dev/null; then \
|
@if cd ${patsubst install_%,%,$@} 2>/dev/null; then \
|
||||||
make install; \
|
$(MAKE) install; \
|
||||||
fi || exit 0
|
fi || exit 0
|
||||||
|
|
||||||
$(CLEAN_SUBDIRS):
|
$(CLEAN_SUBDIRS):
|
||||||
@if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \
|
@if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \
|
||||||
make clean; \
|
$(MAKE) clean; \
|
||||||
fi || exit 0
|
fi || exit 0
|
||||||
|
|
||||||
.PRECIOUS: Makefile
|
.PRECIOUS: Makefile
|
||||||
|
|
|
@ -921,7 +921,7 @@ case "$with_cross_host" in
|
||||||
""|*cygwin*)
|
""|*cygwin*)
|
||||||
test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib"
|
test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib"
|
||||||
test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
|
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"
|
SUBDIRS="$SUBDIRS utils doc"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -71,7 +71,7 @@ case "$with_cross_host" in
|
||||||
""|*cygwin*)
|
""|*cygwin*)
|
||||||
test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib"
|
test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib"
|
||||||
test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
|
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"
|
SUBDIRS="$SUBDIRS utils doc"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue