lkml.org 
[lkml]   [1996]   [Jul]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectCompiling linuxv2.0.3 (fix)
Date
Hiya's!

I just downloaded linux v2.0.3 and ran into a small bug while trying
to compile it. It was when I got to the "make xconfig" bit. It came up with
the error as follows:

./tkparse < ../arch/i386/config.in > kconfig.tmp
Bad if clause at line 60(drivers/scsi/Config.in):[ "$CONFIG_SCSI_NCR53C8XX" != "n" -a $CONFIG_EXPERIMENTAL = 'y' ]; then
make[1]: *** [kconfig.tk] Error 1
make[1]: Leaving directory `/usr/src/linux2.0/scripts'
make: *** [xconfig] Error 2

The bug is really very trivial and the fix is to edit file that it references
(/usr/src/linux/drivers/scsi/Config.in in this case) and changing line 60 to
the following:

FROM:
if [ "$CONFIG_SCSI_NCR53C8XX" != "n" -a $CONFIG_EXPERIMENTAL = 'y' ]; then

TO:
if [ "$CONFIG_SCSI_NCR53C8XX" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then

I hope this is useful to someone. :) I do not subscribe to this list,
so if you need to contact me, please respond to mancini@bright.net. *wave*

Louis


\
 
 \ /
  Last update: 2005-03-22 13:38    [W:0.017 / U:0.060 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site