about summary refs log tree commit diff
path: root/test/build/gtkspell-build.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-04-23T21·21+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-04-23T21·21+0000
commit49e0d743d7348ba15f6c8125138c4e17b271d8c3 (patch)
tree4c21b4e3642b1da3d50414c2628fc7377c5573bb /test/build/gtkspell-build.sh
parentf546e0cda450642177da02895f39f34e3ce1a6ff (diff)
* Fix descriptors for Pan and its dependencies.
Diffstat (limited to 'test/build/gtkspell-build.sh')
-rwxr-xr-xtest/build/gtkspell-build.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/build/gtkspell-build.sh b/test/build/gtkspell-build.sh
index 009e1133ccb2..d4267b302822 100755
--- a/test/build/gtkspell-build.sh
+++ b/test/build/gtkspell-build.sh
@@ -6,10 +6,10 @@ export LD_LIBRARY_PATH=$glib/lib:$atk/lib:$pango/lib:$gtk/lib:$pspell/lib
 export C_INCLUDE_PATH=$pspell/include
 
 top=`pwd`
-tar xvfz $src
-cd gtkspell-*
-./configure --prefix=$top
-make
-make install
-cd ..
-rm -rf gtkspell-*
+tar xvfz $src || exit 1
+cd gtkspell-* || exit 1
+./configure --prefix=$top || exit 1
+make || exit 1
+make install || exit 1
+cd $top || exit 1
+rm -rf gtkspell-* || exit 1