diff options
| author | Cory Fields <[email protected]> | 2014-06-05 14:22:54 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-06-05 16:05:57 -0400 |
| commit | 56c157d5e087e3976ae05cad2dc08a1fcd9a2400 (patch) | |
| tree | 345cdb69770d6944079ece4069f31f895e8f0bfc /src/Makefile.qttest.include | |
| parent | build: Tidy up file generation output (diff) | |
| download | discoin-56c157d5e087e3976ae05cad2dc08a1fcd9a2400.tar.xz discoin-56c157d5e087e3976ae05cad2dc08a1fcd9a2400.zip | |
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 0d08a636e..09e61cf57 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 |