[OpenAFS-devel] RH 7.1 spec file: archlist

Rudolph T Maceyko rtm@cert.org
Wed, 25 Jul 2001 13:53:55 -0400


Great...  Thanks!  I'm trying it now.

-Rudy

--On Wednesday, July 25, 2001 13:33:55 -0400 Derek Atkins 
<warlord@MIT.EDU> wrote:

> I found the bug...  If you look, you will see code that says:
>
>     for ar in $archlist ; do
> 	if [ "$ar" = "$arch" ]; then
> 	    PrintDefine "__BOOT_KERNEL_$ar" "1" ifn,def,end $file
> 	else
> 	    PrintDefine "__BOOT_KERNEL_$ar" "" und $file	# undef
>         fi
>     done
>
> This should really read:
>
>     for ar in $archlist ; do
> 	if [ "$ar" = "$arch" ]; then
> 	    PrintDefine "__MODULE_KERNEL_$ar" "1" ifn,def,end $file
> 	else
> 	    PrintDefine "__MODULE_KERNEL_$ar" "" und $file	# undef
>         fi
>     done
>
>
> Sigh, this is my fault.  Thank you for pointing this out.  Apply this
> patch and try again :)