pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/42217?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: Makefile.am: Avoid removing tcap.h during make -C src/ regen ......................................................................
Makefile.am: Avoid removing tcap.h during make -C src/ regen
That header is ours and is the public entry towards the library.
Change-Id: I89a34ef61e6f74ba7482a5abcf55404c157a14fb --- M src/Makefile.am 1 file changed, 3 insertions(+), 1 deletion(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve
diff --git a/src/Makefile.am b/src/Makefile.am index ef91d4b..6c2f830 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -210,7 +210,9 @@ regen: regenerate-from-asn1-source
regenerate-from-asn1-source: - rm -f $(top_srcdir)/src/gen/*.c $(top_srcdir)/include/osmocom/tcap/*.h + rm -f $(top_srcdir)/src/gen/*.c +# Remove all .h files except our tcap.h: + find $(top_srcdir)/include/osmocom/tcap/ -type f -name '*.h' -type f -not -name 'tcap.h' -delete ASN1C_PREFIX="TCAP_" ${ASN1C_BIN_PATH} \ -S $(ASN1C_SKELETON_PATH) \ -D $(top_srcdir)/src/gen \