diff options
author | R E Broadley <rebroad+github@gmail.com> | 2012-05-17 16:15:28 +0100 |
---|---|---|
committer | R E Broadley <rebroad+github@gmail.com> | 2012-05-17 18:48:09 +0100 |
commit | 8c35bfbadf3e318be8a551e3123188dac994d8a4 (patch) | |
tree | 4c1df1da43d4aa67e42b80a38e640aa9795d72b0 /src | |
parent | 0c7fd9458576ae4b182f561bfd25ce16ca8bb5da (diff) |
Add /bin/sh to bitcoin-qt.pro - as some filesystems don't have the execute flag.
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile.linux-mingw | 2 | ||||
-rw-r--r-- | src/makefile.osx | 2 | ||||
-rw-r--r-- | src/makefile.unix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 1df1e28f1d..61b38a663e 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -70,7 +70,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 diff --git a/src/makefile.osx b/src/makefile.osx index c927330c9c..227756f274 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -107,7 +107,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 diff --git a/src/makefile.unix b/src/makefile.unix index b1cc89d0cb..04e17866e5 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -119,7 +119,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 |