* Fix descriptors for Pan and its dependencies.

This commit is contained in:
Eelco Dolstra 2003-04-23 21:21:06 +00:00
parent f546e0cda4
commit 49e0d743d7
15 changed files with 145 additions and 52 deletions

View file

@ -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