2000-03-07 09:59:03 +00:00
|
|
|
#!/bin/sh
|
|
|
|
env=/usr/bin/env
|
|
|
|
fgrep=/usr/bin/fgrep
|
|
|
|
ldconfig=/sbin/ldconfig
|
2000-03-11 17:52:08 +00:00
|
|
|
ld_so=/usr/libexec/ld.so
|
|
|
|
if [ x$2 = xINSTALL ]; then
|
2000-03-07 09:59:03 +00:00
|
|
|
$env OBJFORMAT=aout $ldconfig -r | $fgrep -q -e '-lc.3'
|
2000-03-11 17:52:08 +00:00
|
|
|
if [ $? -ne 0 -o ! -x $ld_so ]; then
|
2000-03-07 09:59:03 +00:00
|
|
|
cat <<END
|
|
|
|
*********************************************************************
|
|
|
|
|
|
|
|
There do not appear to be any a.out libraries on this
|
|
|
|
machine. Please install the compat22 distribution (via
|
|
|
|
/stand/sysinstall) or build it as part of your 'make world'
|
|
|
|
(see /etc/make.conf).
|
|
|
|
|
|
|
|
*********************************************************************
|
|
|
|
END
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
exit 0;
|