From dfbc0db895a2f7c5f9d27c5df2cc72dd9eecd1bc Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Sun, 7 Jul 2024 13:36:55 +0200 Subject: [PATCH] Makefile.am: avoid warning: EXTRA_DIST multiply defined automake complained about duplicate definitions of EXTRA_DIST: autoreconf: running: automake --add-missing --copy --no-force Makefile.am:19: warning: EXTRA_DIST multiply defined in condition TRUE ... Makefile.am:3: ... 'EXTRA_DIST' previously defined here autoreconf: Leaving directory '.' Signed-off-by: Chris Hofstaedtler --- Makefile.am | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index a92024fbc..47eb9c440 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to produce Makefile.in -EXTRA_DIST = NEWS README - SUBDIRS = lib if ENABLE_SUBIDS @@ -16,7 +14,7 @@ endif CLEANFILES = man/8.out man/po/remove-potcdate.* man/*/login.defs.d man/*/*.mo -EXTRA_DIST = tests/ +EXTRA_DIST = NEWS README tests/ dist-hook: chmod -R u+w $(distdir)/tests