diff options
Diffstat (limited to 'test/build/pspell-build.sh')
-rwxr-xr-x | test/build/pspell-build.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/build/pspell-build.sh b/test/build/pspell-build.sh index 57fb1dcbd1ee..862bb25e6159 100755 --- a/test/build/pspell-build.sh +++ b/test/build/pspell-build.sh @@ -3,10 +3,10 @@ export PATH=/bin:/usr/bin top=`pwd` -tar xvfz $src -cd pspell-* -./configure --prefix=$top -make -make install -cd .. -rm -rf pspell-* +tar xvfz $src || exit 1 +cd pspell-* || exit 1 +./configure --prefix=$top || exit 1 +make || exit 1 +make install || exit 1 +cd $top || exit 1 +rm -rf pspell-* || exit 1 |