README, configure: --with-tests is not supported. Use --enable-tests instead.

This commit is contained in:
Enno Boland 2014-09-22 21:03:02 +02:00
parent cfc0e3b9d9
commit 7b773032c4
2 changed files with 4 additions and 4 deletions

View File

@ -44,8 +44,8 @@ To build this you'll need:
and optionally:
- [graphviz](http://www.graphviz.org) and [doxygen](http://www.doxygen.org) (--with-api-docs) to build API documentation.
- [atf >= 0.15](http://code.google.com/p/kyua) (--with-tests) to build the Kyua test suite.
- [graphviz](http://www.graphviz.org) and [doxygen](http://www.doxygen.org) (--enable-api-docs) to build API documentation.
- [atf >= 0.15](http://code.google.com/p/kyua) (--enable-tests) to build the Kyua test suite.
### Build instructions

4
configure vendored
View File

@ -652,7 +652,7 @@ EOF
fi
#
# If --with-static enabled, build static binaries.
# If --enable-static enabled, build static binaries.
#
if [ "$BUILD_STATIC" = "yes" ]; then
echo "BUILD_STATIC = yes" >>$CONFIG_MK
@ -662,7 +662,7 @@ else
fi
#
# If --with-tests enabled, check for ATF >= 0.15 via pkg-config.
# If --enable-tests enabled, check for ATF >= 0.15 via pkg-config.
#
if [ "$BUILD_TESTS" = "yes" ]; then
printf "Checking for ATF via pkg-config ... "