diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-07-11 04:52:23 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-07-11 04:52:23 -0700 |
commit | bc4fb165ea5f93a12c189b37563a9a6ea07d3977 (patch) | |
tree | 0b56e01de314e9e80989bb12dcd84300b0aa5b09 | |
parent | 8e66454df917a79ff2fe1e3fc6030303f8619a55 (diff) | |
parent | 30d509c12e369ddd897fe235413e0c7b4d54cb09 (diff) |
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 ed6ce85aa8..f2d9b6f087 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 |