8 lines
208 B
Bash
8 lines
208 B
Bash
|
#!/bin/bash
|
||
|
cd ../source
|
||
|
echo "Default installation does not have aspell binary so remove its execution"
|
||
|
sed -i 's/he.rws hunspell/hunspell/g' Makefile.in
|
||
|
./configure
|
||
|
sed -i '82,84d' test/test1
|
||
|
make V=1 test
|