On Fri, May 02, 2008 at 12:18:34AM +0800, Peter Teoh wrote:
> In case if anyone is wondering what this line 107 means in the 
> arch/um/Makefile:
> 
>     104 ifneq ($(KBUILD_SRC),)
>     105 $(shell mkdir -p $(ARCH_DIR) && ln -fsn
> $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
>     106 else
>     107 $(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch)
>     108 endif
> 
> Different version of Linux kernel tried, will always end up at the
> same line above, btw, although the line number can be different.

Color me clueless as to what's going on.  However, since the offending
line is conditional on !KBUILD_SRC, you can try
     mkdir obj ; make ARCH=um O=obj
and see if the behavior changes.  Maybe it'll produce a different and
more informative error.

I suspect you'll get exactly the same error because make is failing to
parse the Makefile and hasn't got around to actually interpretting
it.  If so, then just delete that line and see what happens.

                 Jeff

-- 
Work email - jdike at linux dot intel dot com

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

Reply via email to