All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [patch] 2.5.25 net/core/Makefile
@ 2002-07-11  3:53 Thunder from the hill
  0 siblings, 0 replies; 15+ messages in thread
From: Thunder from the hill @ 2002-07-11  3:53 UTC (permalink / raw)
  To: Keith Owens; +Cc: Linux Kernel Mailing List

Hi,

On Jul 9, 2002 02:13:30, Keith Owens wrote:
> +# See p8022 in net/802/Makefile for config options to check
> +ifneq ($(subst n,,$(CONFIG_LLC)$(CONFIG_TR)$(CONFIG_IPX)$(CONFIG_ATALK)),)
>  obj-y += ext8022.o
>  endif

Make's response:

make[4]: Entering directory `/home/thunder/tmp/thunder-2.5-kb24/net/core'
Makefile:20: *** missing separator.  Stop.
make[4]: Leaving directory `/home/thunder/tmp/thunder-2.5-kb24/net/core'
make[3]: *** [core] Error 2

Ideas?

							Regards,
							Thunder
-- 
(Use http://www.ebb.org/ungeek if you can't decode)
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$
N--- o?  K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G
e++++ h* r--- y- 
------END GEEK CODE BLOCK------


^ permalink raw reply	[flat|nested] 15+ messages in thread
* [patch] 2.5.25 net/core/Makefile
@ 2002-07-06  8:30 Keith Owens
  2002-07-09  0:11 ` Dave Jones
  2002-07-21 23:56 ` Kai Germaschewski
  0 siblings, 2 replies; 15+ messages in thread
From: Keith Owens @ 2002-07-06  8:30 UTC (permalink / raw)
  To: linux-kernel; +Cc: torvalds

The valid combination of CONFIG_NET=n, CONFIG_LLC undefined incorrectly
builds ext8022.o and gets unresolved references because there is no
network code.  Detected by kbuild 2.5, not detected by the existing
build system.

Index: 25.1/net/core/Makefile
--- 25.1/net/core/Makefile Wed, 19 Jun 2002 14:11:35 +1000 kaos (linux-2.5/p/c/50_Makefile 1.4 444)
+++ 25.1(w)/net/core/Makefile Sat, 06 Jul 2002 18:27:16 +1000 kaos (linux-2.5/p/c/50_Makefile 1.4 444)
@@ -16,7 +16,7 @@ obj-$(CONFIG_FILTER) += filter.o
 
 obj-$(CONFIG_NET) += dev.o dev_mcast.o dst.o neighbour.o rtnetlink.o utils.o
 
-ifneq ($(CONFIG_LLC),n)
+ifneq ($(subst n,,$(CONFIG_LLC)),)
 obj-y += ext8022.o
 endif
 


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2002-07-22 14:26 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-11  3:53 [patch] 2.5.25 net/core/Makefile Thunder from the hill
  -- strict thread matches above, loose matches on Subject: below --
2002-07-06  8:30 Keith Owens
2002-07-09  0:11 ` Dave Jones
2002-07-09  0:30   ` Keith Owens
2002-07-09  0:36     ` Dave Jones
2002-07-09  2:13       ` Keith Owens
2002-07-09  2:24         ` Arnaldo Carvalho de Melo
2002-07-21 23:56 ` Kai Germaschewski
2002-07-22  1:08   ` Keith Owens
2002-07-22  8:07     ` Russell King
2002-07-22  8:37       ` Roman Zippel
2002-07-22  8:51         ` Andreas Schwab
2002-07-22  8:55           ` Russell King
2002-07-22  9:23             ` Roman Zippel
2002-07-22 14:29       ` Kai Germaschewski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.