diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-02-01 03:06:22 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-01 08:53:22 -0800 |
commit | c6b7a1edcb31306f904b5b11354bf0d198136e15 (patch) | |
tree | 1c6fcce373e89b64e20efd400f0e51e5e68b49ff /arch/um/Makefile | |
parent | d8c206b2eeb244d6ab57d5a339e707fef2305aa7 (diff) | |
download | talos-op-linux-c6b7a1edcb31306f904b5b11354bf0d198136e15.tar.gz talos-op-linux-c6b7a1edcb31306f904b5b11354bf0d198136e15.zip |
[PATCH] uml: add a build dependency
kern_constants.h now depends on arch/um/include to make sure it exists
before we try to create symlinks in it.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/Makefile')
-rw-r--r-- | arch/um/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index 6430a6383853..4ab6270cd387 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -168,10 +168,13 @@ else $(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch endif -$(ARCH_DIR)/include/sysdep: +$(objtree)/$(ARCH_DIR)/include: + @echo ' MKDIR $@' + $(Q)mkdir -p $@ + +$(ARCH_DIR)/include/sysdep: $(objtree)/$(ARCH_DIR)/include @echo ' SYMLINK $@' ifneq ($(KBUILD_SRC),) - $(Q)mkdir -p $(ARCH_DIR)/include $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep else $(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep @@ -214,7 +217,7 @@ $(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/user-offsets.s CLEAN_FILES += $(ARCH_DIR)/user-offsets.s -$(ARCH_DIR)/include/kern_constants.h: +$(ARCH_DIR)/include/kern_constants.h: $(objtree)/$(ARCH_DIR)/include @echo ' SYMLINK $@' $(Q) ln -sf ../../../include/asm-um/asm-offsets.h $@ |