lkml.org 
[lkml]   [1998]   [Mar]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: "Greased TCPenguin"
Date
From
>>>>> Erik Andersen writes:

> andersee@dillweed% uname -a Linux dillweed 2.1.91 #1 SMP Mon Mar 23
> 23:22:10 MST 1998 i586 unknown ^^^

> Now this seemes very strange to me, since I _did_ comment out the
> "SMP = 1" line in /usr/src/linux/Makefile. I even double checked it

There is a (harmless) bug in the Makefile. Quoting from the patch:

[...]
+ @echo -n \#define UTS_VERSION \"\#`cat .version` > .ver
+ @if [ -z "$(SMP)" ] ; then echo -n " SMP" >> .ver; fi <<<<BUG
+ @if [ -f .name ]; then echo -n \-`cat .name` >> .ver; fi
[...]

Obviously the marked line should read:

+ @if [ -n "$(SMP)" ] ; then echo -n " SMP" >> .ver; fi
^
instead of: |
v
+ @if [ -z "$(SMP)" ] ; then echo -n " SMP" >> .ver; fi


Dominik Kubla
The FreeLinux Project (see http://www.freelinux.org/)



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu

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