From e32bf19f15306c16b1632f9f407c8262f77a66b1 Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Mon, 29 May 2006 03:05:02 +0000 Subject: [PATCH] Stop building on a platform as soon as a tarball build error is encountered. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/scripts/mac/tardist | 2 ++ distrib/scripts/msw/makesetup.sh | 2 ++ distrib/scripts/unix/maketarballs | 2 ++ 3 files changed, 6 insertions(+) diff --git a/distrib/scripts/mac/tardist b/distrib/scripts/mac/tardist index 29a3abb..669ddef 100644 --- a/distrib/scripts/mac/tardist +++ b/distrib/scripts/mac/tardist @@ -7,6 +7,8 @@ # because there's not enough space on the command line, plus we need to ignore the # blank lines. +set -o errexit + PROGNAME=$0 WXSRC=$1 WXDEST=$2 diff --git a/distrib/scripts/msw/makesetup.sh b/distrib/scripts/msw/makesetup.sh index 8138ee1..fe88221 100755 --- a/distrib/scripts/msw/makesetup.sh +++ b/distrib/scripts/msw/makesetup.sh @@ -4,6 +4,8 @@ # Example: # ../distrib/msw/makesetup.sh --wxmsw --verbose &> log +set -o errexit + # If your zip accepts Cygwin-style paths, then # use cygpath, else substitute echo CYGPATHPROG=cygpath diff --git a/distrib/scripts/unix/maketarballs b/distrib/scripts/unix/maketarballs index e4cebb5..aa11327 100755 --- a/distrib/scripts/unix/maketarballs +++ b/distrib/scripts/unix/maketarballs @@ -1,6 +1,8 @@ #!/bin/sh # Makes the wxWidgets tarballs with 'make dist' +set -o errexit + PROGNAME=$0 WXSRC=$1 WXDEST=$2 -- 2.7.4