changeset 3180:90936fea787d draft

fix for build.h regeneration failure when compiling on Windows - as the "||" operator is not known to qmake use "|" instead, which ensures the code in brackets does never get executed on Windows
author Philip Kaufmann <phil.kaufmann@t-online.de>
date Tue, 10 Jul 2012 13:44:56 +0200
parents b79553e5f935
children 3d07ec257b30
files bitcoin-qt.pro
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bitcoin-qt.pro
+++ b/bitcoin-qt.pro
@@ -81,7 +81,7 @@
 }
 
 # 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