2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[#2004] include check-hashes.sh in tarball

add also run check-revisions.sh on "make clean"
This commit is contained in:
Andrei Pavel 2021-07-29 18:47:40 +03:00
parent 4dc02b12c4
commit 91982f875a
No known key found for this signature in database
GPG Key ID: 86E9385BC2203766
2 changed files with 19 additions and 5 deletions

View File

@ -2,7 +2,9 @@ SUBDIRS = utils
yangmodulesdir = ${datarootdir}/${PACKAGE_NAME}/yang/modules yangmodulesdir = ${datarootdir}/${PACKAGE_NAME}/yang/modules
yangmodules_list = ietf-dhcpv6-client@2018-09-04.yang yangmodules_list =
yangmodules_list += hashes
yangmodules_list += ietf-dhcpv6-client@2018-09-04.yang
yangmodules_list += ietf-interfaces@2018-02-20.yang yangmodules_list += ietf-interfaces@2018-02-20.yang
yangmodules_list += ietf-dhcpv6-options@2018-09-04.yang yangmodules_list += ietf-dhcpv6-options@2018-09-04.yang
yangmodules_list += ietf-dhcpv6-relay@2018-09-04.yang yangmodules_list += ietf-dhcpv6-relay@2018-09-04.yang

View File

@ -1,9 +1,24 @@
SUBDIRS = . SUBDIRS = .
yangdir = ${datarootdir}/${PACKAGE_NAME}/yang/modules/utils
yang_list =
yang_list += check-hashes.sh
yang_list += check-revisions.sh
yang_list += reinstall.sh
EXTRA_DIST = ${yang_list}
if HAVE_SYSREPO if HAVE_SYSREPO
# Add to the tarball.
yang_DATA = ${yang_list}
yang_SCRIPTS = ${yang_list}
# Shell tests # Shell tests
SHTESTS = check-hashes.sh SHTESTS =
SHTESTS += check-hashes.sh
SHTESTS += check-revisions.sh
# Run shell tests on "make check". # Run shell tests on "make check".
check_SCRIPTS = $(SHTESTS) check_SCRIPTS = $(SHTESTS)
@ -12,7 +27,4 @@ TESTS = $(SHTESTS)
# Don't install tests. # Don't install tests.
noinst_SCRIPTS = $(SHTESTS) noinst_SCRIPTS = $(SHTESTS)
# Add to the tarball:
EXTRA_DIST = $(SHTESTS)
endif endif