mirror of the now-defunct rocklinux.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
clisp_custmain() {
|
|
|
local my_confopt=$(
|
|
|
for x in $(eval echo "$confopt"); do
|
|
|
( [[ ".$x" == .--build=* ]] || [[ ".$x" == .--host=* ]]; ) && continue
|
|
|
grep -q -- ${x%=*}= configure && echo "$x";
|
|
|
done | tr '\n' ' '
|
|
|
)
|
|
|
eval "./configure $my_confopt --ignore-absence-of-libsigsegv"
|
|
|
cd src
|
|
|
make
|
|
|
make check
|
|
|
make install
|
|
|
}
|
|
|
|
|
|
custmain="clisp_custmain"
|
|
|
|