tests/Makefile.am: do not add files to EXTRA_DIST conditionally

These files must be present in the release tarballs regardless
of the configure options (ENABLE_LIBSCTP, ENABLE_SCTP_TESTS).

Change-Id: I8f530d6157b00907dd1b438100bb0fb300dfcd22
Related: OS#6349
This commit is contained in:
Vadim Yanitskiy 2024-01-29 00:18:16 +07:00
parent e3d27e9553
commit 22790c5d97
1 changed files with 1 additions and 1 deletions

View File

@ -504,11 +504,11 @@ EXTRA_DIST = testsuite.at $(srcdir)/package.m4 $(TESTSUITE) \
osmo_io/osmo_io_test.ok osmo_io/osmo_io_test.err \
soft_uart/soft_uart_test.ok \
rlp/rlp_test.ok \
socket/socket_sctp_test.ok socket/socket_sctp_test.err \
$(NULL)
if ENABLE_LIBSCTP
if ENABLE_SCTP_TESTS
EXTRA_DIST += socket/socket_sctp_test.ok socket/socket_sctp_test.err
check_PROGRAMS += socket/socket_sctp_test
socket_socket_sctp_test_SOURCES = socket/socket_sctp_test.c
endif