Skip to content

Commit

Permalink
Add /bin/sh to bitcoin-qt.pro - as some filesystems don't have the ex…
Browse files Browse the repository at this point in the history
…ecute flag.
  • Loading branch information
rebroad authored and luke-jr committed May 18, 2012
1 parent 7532c47 commit 77b0f86
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bitcoin-qt.pro
Expand Up @@ -83,7 +83,7 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) {
# 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
Expand Down
2 changes: 1 addition & 1 deletion src/makefile.linux-mingw
Expand Up @@ -69,7 +69,7 @@ OBJS= \
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

Expand Down
2 changes: 1 addition & 1 deletion src/makefile.osx
Expand Up @@ -106,7 +106,7 @@ all: bitcoind
-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

Expand Down
2 changes: 1 addition & 1 deletion src/makefile.unix
Expand Up @@ -116,7 +116,7 @@ all: bitcoind
-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

Expand Down

0 comments on commit 77b0f86

Please sign in to comment.