diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-07-11 04:52:23 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-07-11 04:52:23 -0700 |
| commit | bc4fb165ea5f93a12c189b37563a9a6ea07d3977 (patch) | |
| tree | 0b56e01de314e9e80989bb12dcd84300b0aa5b09 | |
| parent | Merge pull request #1580 from laanwj/2012_07_bitcoinstrings (diff) | |
| parent | fix for build.h regeneration failure when compiling on Windows (diff) | |
| download | discoin-bc4fb165ea5f93a12c189b37563a9a6ea07d3977.tar.xz discoin-bc4fb165ea5f93a12c189b37563a9a6ea07d3977.zip | |
Merge pull request #1574 from Diapolo/pro-file2
fix for build.h regeneration failure when compiling on Windows
| -rw-r--r-- | bitcoin-qt.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ed6ce85aa..f2d9b6f08 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -81,7 +81,7 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) { } # regenerate src/build.h -!windows || contains(USE_BUILD_INFO, 1) { +!windows|contains(USE_BUILD_INFO, 1) { genbuild.depends = FORCE genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h genbuild.target = $$OUT_PWD/build/build.h |