Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Dec 1998 22:22:57 -0500 (EST)
From:      "John W. DeBoskey" <jwd@unx.sas.com>
To:        freebsd-current@FreeBSD.ORG
Subject:   /etc/rc busted for legacy aout ldconfig setup
Message-ID:  <199812140322.WAA14885@bb01f39.unx.sas.com>

next in thread | raw e-mail | index | archive | help
Hi,

   The following commit broke legacy ldconfig aout support:


1.161 Thu Dec 10 8:06:59 1998 UTC by jb 
Diffs to 1.160 

Add a test for hw.machine == i386 before trying to run ldconfig for
legacy aout support.


   The following conditional is wrong:

if [ X"`sysctl hw.machine`" = X"i386" ]; then

   and needs to read:

if [ X"`sysctl hw.machine | cut -d' ' -f2`" = X"i386" ]; then

   assuming the bruce filter doesn't mind a pipe in an 'if'
statement.


   Anyone running a -current machine doing a 'make world' every day
and still using any aout libraries will be affected by this.

Thanks!
John


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199812140322.WAA14885>