diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-23T21·21+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-23T21·21+0000 |
commit | 49e0d743d7348ba15f6c8125138c4e17b271d8c3 (patch) | |
tree | 4c21b4e3642b1da3d50414c2628fc7377c5573bb /test/build/pspell-build.sh | |
parent | f546e0cda450642177da02895f39f34e3ce1a6ff (diff) |
* Fix descriptors for Pan and its dependencies.
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 |