diff options
| author | Gavin Andresen <[email protected]> | 2013-02-18 18:37:45 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-02-18 18:38:34 -0500 |
| commit | 44d7f4cbebd446f8f4a48ff9048d4549c0e2448a (patch) | |
| tree | 3e8c522a6f0d04f6fd30753763b7464ac8340c31 /src/makefile.linux-mingw | |
| parent | Merge pull request #2311 from gavinandresen/master (diff) | |
| download | discoin-44d7f4cbebd446f8f4a48ff9048d4549c0e2448a.tar.xz discoin-44d7f4cbebd446f8f4a48ff9048d4549c0e2448a.zip | |
Set CC/CXX properly for gitian buildv0.8.0
Diffstat (limited to 'src/makefile.linux-mingw')
| -rw-r--r-- | src/makefile.linux-mingw | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index f6c3a8ad7..7509e2798 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -4,8 +4,8 @@ DEPSDIR:=/usr/i586-mingw32msvc -CC ?= i586-mingw32msvc-gcc -CXX ?= i586-mingw32msvc-g++ +CC := i586-mingw32msvc-gcc +CXX := i586-mingw32msvc-g++ USE_UPNP:=0 USE_IPV6:=1 |