fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/gapk/+/31855
)
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: Ib5402f99805437ad1ea49792b99434b57b616a2f
---
M tests/Makefile.am
1 file changed, 18 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/gapk refs/changes/55/31855/1
diff --git a/tests/Makefile.am b/tests/Makefile.am
index dee4060..e0a3c96 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -10,6 +10,8 @@
$(LIBOSMOCODEC_CFLAGS) \
$(NULL)
+AM_LDFLAGS = -no-install
+
check_PROGRAMS = \
procqueue/pq_test \
io/pq_file_test \
--
To view, visit
https://gerrit.osmocom.org/c/gapk/+/31855
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: gapk
Gerrit-Branch: master
Gerrit-Change-Id: Ib5402f99805437ad1ea49792b99434b57b616a2f
Gerrit-Change-Number: 31855
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange