diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-02-01 18:00:05 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-02-01 18:00:05 -0500 |
commit | a93f1969c780b831d5c4cb5bde938320f2ffd763 (patch) | |
tree | 73630238bc0b700ab40f39fc2182bb5adaa36c7d | |
parent | 0af7da3050f4952e106ce1acbceedaf85735ab17 (diff) | |
download | dimension-a93f1969c780b831d5c4cb5bde938320f2ffd763.tar.xz |
Use set -e in autogen.sh.
-rwxr-xr-x | autogen.sh | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,7 +1,9 @@ -#! /bin/sh +#!/bin/sh -aclocal && -autoconf && -libtoolize -q --force --copy && -automake --add-missing --copy && +set -e + +aclocal +autoconf +libtoolize -q --force --copy +automake --add-missing --copy echo You may now run ./configure |