diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2008-02-05 01:31:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:31 -0500 |
commit | 47afa1d5f826606def7c498e93ec79a905042c56 (patch) | |
tree | 4b9e426f270087c8577d3ecd3ae7338457e96b06 /arch/um/Makefile | |
parent | d449c5036778dfa00374c55c9c9f02bd45574c58 (diff) |
uml: remove TOPDIR
TOPDIR is obsolete, use srctree instead. This patch removes TOPDIR from all
UML Makefiles.
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/Makefile')
-rw-r--r-- | arch/um/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index fb8854a9a542..cb4af9bf2074 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
@@ -160,7 +160,7 @@ ifneq ($(KBUILD_SRC),) | |||
160 | $(Q)mkdir -p $(objtree)/include/asm-um | 160 | $(Q)mkdir -p $(objtree)/include/asm-um |
161 | $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ | 161 | $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ |
162 | else | 162 | else |
163 | $(Q)cd $(TOPDIR)/$(dir $@) ; \ | 163 | $(Q)cd $(srctree)/$(dir $@) ; \ |
164 | ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@) | 164 | ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@) |
165 | endif | 165 | endif |
166 | 166 | ||
@@ -170,7 +170,7 @@ ifneq ($(KBUILD_SRC),) | |||
170 | $(Q)mkdir -p $(objtree)/include/asm-um | 170 | $(Q)mkdir -p $(objtree)/include/asm-um |
171 | $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch | 171 | $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch |
172 | else | 172 | else |
173 | $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch | 173 | $(Q)cd $(srctree)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch |
174 | endif | 174 | endif |
175 | 175 | ||
176 | $(objtree)/$(ARCH_DIR)/include: | 176 | $(objtree)/$(ARCH_DIR)/include: |