diff options
author | Bert Vermeulen <bert@biot.com> | 2013-12-15 15:55:35 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2013-12-15 15:55:35 +0100 |
commit | baeaa75dedad94558e40a888c2a56ecea2cdb702 (patch) | |
tree | dffebff77cba88ceb16a00873e6bf44af64296a1 /tests | |
parent | 0b2a10a37f61cc70260376d8b7c2c01ca63deaf7 (diff) | |
download | libsigrokdecode-baeaa75dedad94558e40a888c2a56ecea2cdb702.tar.gz libsigrokdecode-baeaa75dedad94558e40a888c2a56ecea2cdb702.zip |
runtc: Make sure to compile against this library
It might compile against a previously-installed one unless the linker
finds it in the top directory first.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index cce7e63..595a65d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -39,5 +39,5 @@ bin_PROGRAMS = runtc runtc_SOURCES = runtc.c runtc_CPPFLAGS = $(CPPFLAGS_PYTHON) $(LIBSIGROK_CFLAGS) \ -DDECODERS_DIR='"$(abs_top_builddir)/decoders"' -runtc_LDFLAGS = $(LIBSIGROK_LIBS) $(LDFLAGS_PYTHON) -L$(top_builddir) -lsigrokdecode +runtc_LDFLAGS = -L$(top_builddir) $(LIBSIGROK_LIBS) $(LDFLAGS_PYTHON) -lsigrokdecode endif |