mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b262f5384f
Maintainer admitted this on ports-ML. (message-id: <20000309102434.P54218@shale.csir.co.za>) # Sorry Jeremy, the tree would be frozen soon.
23 lines
610 B
Bash
23 lines
610 B
Bash
#!/bin/sh
|
|
env=/usr/bin/env
|
|
fgrep=/usr/bin/fgrep
|
|
ldconfig=/sbin/ldconfig
|
|
ld_so=/usr/libexec/ld.so
|
|
if [ x$2 = xINSTALL ]; then
|
|
$env OBJFORMAT=aout $ldconfig -r | $fgrep -q -e '-lc.3'
|
|
if [ $? -ne 0 -o ! -x $ld_so ]; then
|
|
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;
|