changeset 2987:bb083c8a4a62 draft

Add /bin/sh to bitcoin-qt.pro - as some filesystems don't have the execute flag.
author R E Broadley <rebroad+github@gmail.com>
date Thu, 17 May 2012 16:15:28 +0100
parents 03c9d875651b
children 13ba973a960e
files bitcoin-qt.pro src/makefile.linux-mingw src/makefile.osx src/makefile.unix
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/bitcoin-qt.pro
+++ b/bitcoin-qt.pro
@@ -83,7 +83,7 @@
 # regenerate src/build.h
 !windows || contains(USE_BUILD_INFO, 1) {
     genbuild.depends = FORCE
-    genbuild.commands = cd $$PWD; share/genbuild.sh $$OUT_PWD/build/build.h
+    genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h
     genbuild.target = genbuildhook
     PRE_TARGETDEPS += genbuildhook
     QMAKE_EXTRA_TARGETS += genbuild
--- a/src/makefile.linux-mingw
+++ b/src/makefile.linux-mingw
@@ -69,7 +69,7 @@
 all: bitcoind.exe
 
 obj/build.h: FORCE
-	../share/genbuild.sh obj/build.h
+	/bin/sh ../share/genbuild.sh obj/build.h
 version.cpp: obj/build.h
 DEFS += -DHAVE_BUILD_INFO
 
--- a/src/makefile.osx
+++ b/src/makefile.osx
@@ -106,7 +106,7 @@
 -include obj-test/*.P
 
 obj/build.h: FORCE
-	../share/genbuild.sh obj/build.h
+	/bin/sh ../share/genbuild.sh obj/build.h
 version.cpp: obj/build.h
 DEFS += -DHAVE_BUILD_INFO
 
--- a/src/makefile.unix
+++ b/src/makefile.unix
@@ -116,7 +116,7 @@
 -include obj-test/*.P
 
 obj/build.h: FORCE
-	../share/genbuild.sh obj/build.h
+	/bin/sh ../share/genbuild.sh obj/build.h
 version.cpp: obj/build.h
 DEFS += -DHAVE_BUILD_INFO