diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-17 11:14:42 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-17 11:14:42 -0700 |
| commit | ae2fe472c371cd140b1cabd102a780d4fde1f154 (patch) | |
| tree | 08a35ed5ea3b2c58ca9bba07f72e8596ae21d587 /src | |
| parent | Merge pull request #1331 from roques/trivia (diff) | |
| parent | Add /bin/sh to bitcoin-qt.pro - as some filesystems don't have the execute flag. (diff) | |
| download | discoin-ae2fe472c371cd140b1cabd102a780d4fde1f154.tar.xz discoin-ae2fe472c371cd140b1cabd102a780d4fde1f154.zip | |
Merge pull request #1333 from rebroad/AddBinSh
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 1df1e28f1..61b38a663 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 c927330c9..227756f27 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 b1cc89d0c..04e17866e 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 |