00f73ebba8
Also, disable compiler optimization again. Although -O2 works on FreeBSD-11/i386, it breaks self-testing on FreeBSD-14/amd64.
9 lines
305 B
Bash
9 lines
305 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
cd $PKG_PREFIX/lib/scm && $PKG_PREFIX/bin/scm -l mkimpcat.scm
|
|
cd $PKG_PREFIX/lib/scm && $PKG_PREFIX/bin/scm -l ${PKG_PREFIX}/share/slib/mklibcat.scm
|
|
elif [ "$2" = "DEINSTALL" ] ; then
|
|
rm -f $PKG_PREFIX/lib/scm/slibcat
|
|
rm -f $PKG_PREFIX/lib/scm/implcat
|
|
fi
|