Skip to content

Commit

Permalink
Change from enabled to disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
tsadpbb committed Sep 9, 2024
1 parent dc9419f commit 34d36f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
11 changes: 3 additions & 8 deletions tap/configure
Original file line number Diff line number Diff line change
Expand Up @@ -1438,8 +1438,8 @@ Optional Features:
--enable-fast-install[=PKGS]
optimize for fast installation [default=yes]
--disable-libtool-lock avoid locking (might break parallel builds)
--disable-maintainer-mode
disable make rules and dependencies not useful (and
--enable-maintainer-mode
enable make rules and dependencies not useful (and
sometimes confusing) to the casual installer
Optional Packages:
Expand Down Expand Up @@ -12870,11 +12870,6 @@ CC=$lt_save_CC



# https://www.gnu.org/software//automake/manual/html_node/maintainer_002dmode.html
# Adding maintainer mode because I don't want to require people to install automake 1.17
# in order to run the test suite. Caveats are described in the above link
# One being that maintainers have to make sure that the Makefile.in files are updated manually
# This helps with github actions

{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
printf %s "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
Expand All @@ -12883,7 +12878,7 @@ if test ${enable_maintainer_mode+y}
then :
enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
else case e in #(
e) USE_MAINTAINER_MODE=yes ;;
e) USE_MAINTAINER_MODE=no ;;
esac
fi

Expand Down
12 changes: 6 additions & 6 deletions tap/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ AM_INIT_AUTOMAKE([foreign])
AC_PROG_CC
LT_INIT
AC_PROG_INSTALL
# https://www.gnu.org/software//automake/manual/html_node/maintainer_002dmode.html
# Adding maintainer mode because I don't want to require people to install automake 1.17
# in order to run the test suite. Caveats are described in the above link
# One being that maintainers have to make sure that the Makefile.in files are updated manually
# This helps with github actions
AM_MAINTAINER_MODE([enable])
dnl https://www.gnu.org/software//automake/manual/html_node/maintainer_002dmode.html
dnl Disabling maintainer mode because I don't want to require people to install automake 1.17
dnl in order to run the test suite. Caveats are described in the above link
dnl One being that maintainers have to make sure that the Makefile.in files are updated manually
dnl This helps with github actions
AM_MAINTAINER_MODE([disable])

# Checks for libraries
case "$host" in
Expand Down

0 comments on commit 34d36f1

Please sign in to comment.