In message: <[EMAIL PROTECTED]>
Paul Richards <[EMAIL PROTECTED]> writes:
: A 'sysclean' target would be the same in my mind. If you're "within
: spec" of what -current supports then running that target shouldn't hose
: you. If you're outside spec then you need to take your own precautions.
NetBSD has in its distribution sets things that look like:
obsolete.mi
obsolete.${ARCH}
and its distribution tools remove the old cruft on installation of the
newer distribution set.
Something like the following would then put things right:
sysclean:
@ head -2 ${SRCDIR}/release/obsolete.mi | xargs rm
@ head -2 ${SRCDIR}/release/obsolete.${MACHINE_ARCH} | xargs rm
would be the FreeBSD way of saying something similar. However, the
obsolete.mi file would get large with time :-)
Warner
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message