Place your bets
Will this random change fix it?
This commit is contained in:
parent
1b64bb71b7
commit
2a74ab6d27
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ before_install:
|
|||
|
||||
# Define CC and CXX
|
||||
- |
|
||||
if ["$SIXTY_FOUR_BIT" == "true"]; then
|
||||
if [ "$SIXTY_FOUR_BIT" == "true" ]; then
|
||||
export CC="x86_64-w64-mingw32-gcc"
|
||||
export CXX="x86_64-w64-mingw32-g++"
|
||||
else
|
||||
|
@ -87,7 +87,7 @@ before_install:
|
|||
if [ "$TRAVIS_OS_NAME" = "windows" ]; then
|
||||
export WINDRES="windres"
|
||||
else
|
||||
if ["$SIXTY_FOUR_BIT" == "true" ]; then
|
||||
if [ "$SIXTY_FOUR_BIT" == "true" ]; then
|
||||
export WINDRES="x86_64-w64-mingw32-windres"
|
||||
else
|
||||
export WINDRES="i686-w64-mingw32-windres"
|
||||
|
|
Loading…
Add table
Reference in a new issue