Changeset 948


Ignore:
Timestamp:
Sep 12, 2011, 6:59:07 PM (12 years ago)
Author:
sam
Message:

build: fix a typo in the mingw configuration sequence in lol-build and
add set -e to the build-mingw scripts to catch possible regressions.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/build-mingw

    r945 r948  
    44make distclean
    55
     6set -e
    67./build/lol-build bootstrap windows-i386
    78./build/lol-build configure windows-i386
  • trunk/build-mingw64

    r945 r948  
    44make distclean
    55
     6set -e
    67./build/lol-build bootstrap windows-amd64
    78./build/lol-build configure windows-amd64
  • trunk/build/lol-build

    r947 r948  
    5858    case "$platform" in
    5959        windows-i386)
    60             if test "x${SYSTEM}" = xMINGW32; then
     60            if test "x${MSYSTEM}" = xMINGW32; then
    6161                :
    6262            elif i586-mingw32msvc-g++ --version >/dev/null 2>&1; then
     
    7474            ;;
    7575        windows-amd64)
    76             if test "x${SYSTEM}" = xMINGW64; then
     76            if test "x${MSYSTEM}" = xMINGW64; then
    7777                :
    7878            elif x86_64-w64-mingw32-g++ --version >/dev/null 2>&1; then
Note: See TracChangeset for help on using the changeset viewer.