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/readelf | |
parent | 64f80756138bb2cab28ae3bb3732558961bf1e8b (diff) |
Resolved paths using the Autoconf preset output variable top_srcdir.
Diffstat (limited to 'plugins/readelf')
-rw-r--r-- | plugins/readelf/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/readelf/Makefile.am b/plugins/readelf/Makefile.am index 6ba7efb..a5c34f8 100644 --- a/plugins/readelf/Makefile.am +++ b/plugins/readelf/Makefile.am @@ -12,8 +12,8 @@ libreadelf_la_SOURCES = \ libreadelf_la_CFLAGS = $(AM_CFLAGS) -libreadelf_la_LDFLAGS = -L../../plugins/fmtp/.libs -lfmtp +libreadelf_la_LDFLAGS = -L$(top_srcdir)/plugins/fmtp/.libs -lfmtp -AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I../../src -I../.. +AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir) AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS) |