diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-13 07:55:31 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-13 07:55:31 (GMT) |
commit | 53b7f44f272ce972e09546c191efee80856da4c3 (patch) | |
tree | 8b10d78ebd70b2d6a39e6114d62cdb660abd1bbd /plugins/androhelpers | |
parent | 64f80756138bb2cab28ae3bb3732558961bf1e8b (diff) |
Resolved paths using the Autoconf preset output variable top_srcdir.
Diffstat (limited to 'plugins/androhelpers')
-rw-r--r-- | plugins/androhelpers/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/androhelpers/Makefile.am b/plugins/androhelpers/Makefile.am index a568c9d..8366d33 100644 --- a/plugins/androhelpers/Makefile.am +++ b/plugins/androhelpers/Makefile.am @@ -7,12 +7,12 @@ libandrohelpers_la_SOURCES = \ try_n_catch.h try_n_catch.c \ switch.h switch.c -libandrohelpers_la_LDFLAGS = -L../../src/.libs -L../../src/gui/.libs -lchrysagui \ +libandrohelpers_la_LDFLAGS = -L$(top_srcdir)/src/.libs -L$(top_srcdir)/src/gui/.libs -lchrysagui \ -lchrysadisass -lchrysagtkext \ - -L../../src/plugins/.libs -lplugins + -L$(top_srcdir)/src/plugins/.libs -lplugins AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) $(LIBPYTHON_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \ - -I../../src + -I$(top_srcdir)/src AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS) |