diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2015-01-05 20:34:00 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2015-01-06 20:00:25 +0000 |
commit | fe925e221ffcde1c810830a8985fa984254ca328 (patch) | |
tree | 9816d0321d567d70e6f2183f0651a5f7cba38ee9 /src/Makefile.qt.include | |
parent | 41cced21063a89992ef393dda4fffc44ff60c7c3 (diff) |
Use EXTRA_LIBRARIES instead of noinst_LIBRARIES so we can avoid building unused code
Diffstat (limited to 'src/Makefile.qt.include')
-rw-r--r-- | src/Makefile.qt.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 898337ad6f..5812f9aff0 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -1,5 +1,5 @@ bin_PROGRAMS += qt/bitcoin-qt -noinst_LIBRARIES += qt/libbitcoinqt.a +EXTRA_LIBRARIES += qt/libbitcoinqt.a # bitcoin qt core # QT_TS = \ |