lkml.org 
[lkml]   [2007]   [Nov]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[Git Patch][Resend] Makefile: fix wrong dirs when making cscope

    Hi, Sam! Is this one OK for you?

    This patch fixed the following errors when doing "make cscope" and
    "make cscope ARCH=um".

    FILELST cscope.files
    find: arch/i386: No such file or directory
    MAKE cscope.out


    FILELST cscope.files
    find: include/asm-i386: No such file or directory
    MAKE cscope.out


    Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
    Cc: Sam Ravnborg <sam@ravnborg.org>

    ---
    Makefile | 3 ++-
    1 file changed, 2 insertions(+), 1 deletion(-)

    diff --git a/Makefile b/Makefile
    index 188c3b6..7bc0bf7 100644
    --- a/Makefile
    +++ b/Makefile
    @@ -1309,6 +1309,7 @@ ALLINCLUDE_ARCHS := $(ARCH) $(SUBARCH)
    else
    ALLINCLUDE_ARCHS := $(SRCARCH)
    endif
    +ALLINCLUDE_ARCHS := $(shell echo $(ALLINCLUDE_ARCHS)|sed -e "s/i386/x86/")
    else
    #Allow user to specify only ALLSOURCE_PATHS on the command line, keeping existing behavour.
    ALLINCLUDE_ARCHS := $(ALLSOURCE_ARCHS)
    @@ -1318,7 +1319,7 @@ endif
    ifeq ($(ARCH), $(SRCARCH))
    ALLSOURCE_ARCHS := $(ARCH)
    else
    -ALLSOURCE_ARCHS := $(ARCH) $(SRCARCH)
    +ALLSOURCE_ARCHS := $(shell echo $(ARCH) $(SRCARCH)|sed -e "s/i386/x86/")
    endif

    define find-sources
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/
    \
     
     \ /
      Last update: 2007-11-05 13:11    [W:5.396 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site