./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir="$libdir" && \
make && \
${installmonitor} make install || exit 1
# gc puts crap in usr/share/gc/
if [ ! -z "${tmpfile}" ]; then
grep -v 'usr.share.gc' "${tmpfile}" > "${tmpfile}.1"
mv "${tmpfile}.1" "${tmpfile}"
fi
rm -rf /usr/share/gc
exit 0
|