diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f2621414ee5f2f601424c22f00e207903e3b6104 (patch) | |
tree | 56a856dafd1ca684bb23263cacaa723ee4f404fc /configure.ac | |
parent | Adding debian version 1:2.11-8. (diff) | |
download | bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.tar.xz bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 9f1abc2..83a6f12 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,14 @@ AC_PREREQ([2.60]) -AC_INIT([bash-completion], [2.11]) -AM_INIT_AUTOMAKE([foreign dist-xz no-dist-gzip -Wall -Wno-portability -Werror]) +AC_INIT([bash-completion], [2.12.0]) dnl x-release-please-version +dnl tar-pax for portable UTF-8 handling +AM_INIT_AUTOMAKE([ + foreign dist-xz no-dist-gzip tar-pax -Wall -Wno-portability -Werror +]) AC_PROG_LN_S AC_PROG_MKDIR_P AC_PROG_SED AC_ARG_WITH([pytest],[ --with-pytest=executable],[PYTEST="$withval"]) -if test -z "$PYTEST"; then +if test "x$PYTEST" = x; then AC_CHECK_PROGS([PYTEST],[pytest pytest-3],[pytest]) fi AC_CONFIG_FILES([ @@ -14,6 +17,8 @@ completions/Makefile doc/Makefile helpers/Makefile test/Makefile +test/fallback/Makefile +test/fallback/completions/Makefile test/t/Makefile test/t/unit/Makefile ]) |