diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-06-05 14:22:54 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-06-05 16:05:57 -0400 |
commit | 56c157d5e087e3976ae05cad2dc08a1fcd9a2400 (patch) | |
tree | 345cdb69770d6944079ece4069f31f895e8f0bfc /src/Makefile.qttest.include | |
parent | 70c71c50ce552c0358679653c04d7cc72a40222c (diff) |
build: avoid the use of top_ and abs_ dir paths
Using them has the side effect of confusing the dependency-tracking logic.
Diffstat (limited to 'src/Makefile.qttest.include')
-rw-r--r-- | src/Makefile.qttest.include | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.qttest.include b/src/Makefile.qttest.include index 0d08a636e9..09e61cf57c 100644 --- a/src/Makefile.qttest.include +++ b/src/Makefile.qttest.include @@ -1,6 +1,6 @@ -AM_CPPFLAGS += -I$(top_srcdir)/src \ - -I$(top_srcdir)/src/qt \ - -I$(top_builddir)/src/qt \ +AM_CPPFLAGS += -I$(srcdir) \ + -I$(srcdir)/qt \ + -I$(builddir)/qt \ $(PROTOBUF_CFLAGS) \ $(QR_CFLAGS) bin_PROGRAMS += qt/test/test_bitcoin-qt |