fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/32139 )
Change subject: tests: use -no-install libtool flag to avoid ./lt-* scripts ......................................................................
tests: use -no-install libtool flag to avoid ./lt-* scripts
This option should be used for any executables which are used only for testing, or for generating other files and are consequently never installed. By specifying this option, we are telling Libtool that the executable it links will only ever be executed from where it is built in the build tree. Libtool is usually able to considerably speed up the link process for such executables.
Change-Id: Id5f88c331cf1dfd3f38120b4ef59ced9a563d4f0 --- M tests/ranap_rab_ass/Makefile.am 1 file changed, 18 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/tests/ranap_rab_ass/Makefile.am b/tests/ranap_rab_ass/Makefile.am index 1278ae8..918682c 100644 --- a/tests/ranap_rab_ass/Makefile.am +++ b/tests/ranap_rab_ass/Makefile.am @@ -15,6 +15,8 @@ $(COVERAGE_CFLAGS) \ $(NULL)
+AM_LDFLAGS = -no-install + EXTRA_DIST = \ ranap_rab_ass_test.ok \ $(NULL)