commit: 37e86a5748b8e39ac2a23490b2c6ae5830b88c94 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Jan 24 03:18:02 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jan 24 03:18:02 2023 +0000 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=37e86a57
fix-gnustack: modernise autotools usage a bit Signed-off-by: Sam James <sam <AT> gentoo.org> misc/fix-gnustack/configure.ac | 6 +++--- misc/fix-gnustack/tests/Makefile.am | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/misc/fix-gnustack/configure.ac b/misc/fix-gnustack/configure.ac index 8cf7ac6..965dd3e 100644 --- a/misc/fix-gnustack/configure.ac +++ b/misc/fix-gnustack/configure.ac @@ -16,11 +16,11 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -AC_PREREQ([2.65]) -AC_INIT([fix-gnustack], [0.1], [http://bugs.gentoo.org/]) +AC_PREREQ([2.71]) +AC_INIT([fix-gnustack],[0.1],[https://bugs.gentoo.org/]) AC_CONFIG_SRCDIR([fix-gnustack.c]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([1.11 foreign]) +AM_INIT_AUTOMAKE([1.15 foreign no-dist-gzip dist-xz]) AM_SILENT_RULES([no]) # Checks for programs. diff --git a/misc/fix-gnustack/tests/Makefile.am b/misc/fix-gnustack/tests/Makefile.am index 17bec0d..067b83a 100644 --- a/misc/fix-gnustack/tests/Makefile.am +++ b/misc/fix-gnustack/tests/Makefile.am @@ -1,5 +1,3 @@ -ACLOCAL_AMFLAGS = -I m4 - noinst_PROGRAMS = bad-gnustack EXTRA_DIST = gnustacktest.sh
