diff options
author | Martin Szulecki | 2014-05-09 12:54:27 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-05-09 12:54:27 +0200 |
commit | 7b1acb21bc2dd542e9f14f3d14b816661aa70168 (patch) | |
tree | b459a9d01f7dfdcec63f60ebbe3fc58fd66e10e1 | |
parent | 232767840fcad6aa1c8958dc9d1a597f010af034 (diff) | |
download | libusbmuxd-7b1acb21bc2dd542e9f14f3d14b816661aa70168.tar.gz libusbmuxd-7b1acb21bc2dd542e9f14f3d14b816661aa70168.tar.bz2 |
tools: Use $(top_builddir) instead of relative path to fix out of tree build
-rw-r--r-- | tools/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 7449401..df6c803 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -6,5 +6,5 @@ bin_PROGRAMS = iproxy iproxy_SOURCES = iproxy.c iproxy_CFLAGS = $(AM_CFLAGS) iproxy_LDFLAGS = $(AM_LDFLAGS) -iproxy_LDADD = ../src/libusbmuxd.la +iproxy_LDADD = $(top_builddir)/src/libusbmuxd.la |