commit: 149a5fb97abf4a83380c87998562dcabbdc39d5e
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 8 04:46:01 2025 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Jan 8 04:51:07 2025 +0000
URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=149a5fb9
tests: move scripts to EXTRA_DIST
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
Makefile.am | 2 --
tests/local.mk | 12 +++++-------
2 files changed, 5 insertions(+), 9 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 37d9933..14ef729 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,8 +11,6 @@ confddir = $(sysconfdir)/sandbox.d
bin_PROGRAMS =
check_PROGRAMS =
-check_SCRIPTS =
-dist_check_SCRIPTS =
dist_conf_DATA = etc/sandbox.conf
confd_DATA = etc/sandbox.d/00default
dist_pkgdata_DATA = data/sandbox.bashrc
diff --git a/tests/local.mk b/tests/local.mk
index 73900b6..4ba6630 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -13,7 +13,11 @@ EXTRA_DIST += \
%D%/package.m4.in \
%D%/test-skel-0.c \
%D%/tests.h \
- %D%/xattr-0
+ %D%/malloc-0 \
+ %D%/script-0 \
+ %D%/trace-0 \
+ %D%/xattr-0 \
+ $(wildcard $(top_srcdir)/%D%/*-[0-9]*.sh)
check_PROGRAMS += \
%D%/get-group \
@@ -101,12 +105,6 @@ check_PROGRAMS += \
%D%/sigsuspend-zsh_static_tst \
%D%/trace-memory_static_tst
-dist_check_SCRIPTS += \
- $(wildcard $(top_srcdir)/%D%/*-[0-9]*.sh) \
- %D%/malloc-0 \
- %D%/script-0 \
- %D%/trace-0
-
# This will be used by all programs, not just tests/ ...
AM_LDFLAGS = `expr $@ : .*_static >/dev/null && echo -all-static`