summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extra/clisp/PKGBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/extra/clisp/PKGBUILD b/extra/clisp/PKGBUILD
index b7be73093..4738a52c6 100644
--- a/extra/clisp/PKGBUILD
+++ b/extra/clisp/PKGBUILD
@@ -20,8 +20,10 @@ build() {
./configure --prefix=/usr --with-readline --with-ffcall src
cd src
./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > Makefile
+ # Dirty hack for using arimips64 instead of arimips.c
+ [ $CARCH = "mips64el" ] && ln -s arimips64.c arimips.c
make || return 1
sed -i 's,http://www.lisp.org/HyperSpec/,http://www.lispworks.com/reference/HyperSpec/,g' config.lisp
make || return 1
make DESTDIR=$pkgdir install || return 1
-}
+} \ No newline at end of file