diff options
author | Phil Pennock <pdp@exim.org> | 2012-11-16 22:28:10 -0500 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2012-11-16 22:28:10 -0500 |
commit | 4dbca2613a00a88484ffa7d4d39f93be1d7e1e39 (patch) | |
tree | 08fda0f4e5e3c7c7435d40df898e60d07f657759 | |
parent | 018c60d7505a46f7dfd8630fbd59a3f900f6ae22 (diff) |
Configure should stop on error.
Set the POSIX -e option on the #! line invoking /bin/sh.
If any of the sub-commands fail, the Configure as a whole should fail.
-rwxr-xr-x | src/scripts/Configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/Configure b/src/scripts/Configure index 06bd8bdd4..6c340ee25 100755 --- a/src/scripts/Configure +++ b/src/scripts/Configure @@ -1,4 +1,4 @@ -#! /bin/sh +#! /bin/sh -e # A script to be called to run all the other configuring scripts manually. |