diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-09-10 10:00:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 13:15:12 -0400 |
commit | b35b7072178b76814a088ac71ac4702de8bf7c7b (patch) | |
tree | 29daa95ef6356f896fd71be678b95009bf395179 /arch/ppc64 | |
parent | 35797132b311b3b7d4add48393b0a03f3566cbc1 (diff) |
[PATCH] powerpc: Move include3 to arch/$(ARCH)/include
This is less troublesome and makes more sense.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc64')
-rw-r--r-- | arch/ppc64/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/arch/ppc64/Makefile b/arch/ppc64/Makefile index 0a23aeacba88..17d2c1eac3b8 100644 --- a/arch/ppc64/Makefile +++ b/arch/ppc64/Makefile | |||
@@ -56,7 +56,7 @@ LDFLAGS_vmlinux := -Bstatic -e $(KERNELLOAD) -Ttext $(KERNELLOAD) | |||
56 | CFLAGS += -msoft-float -pipe -mminimal-toc -mtraceback=none \ | 56 | CFLAGS += -msoft-float -pipe -mminimal-toc -mtraceback=none \ |
57 | -mcall-aixdesc | 57 | -mcall-aixdesc |
58 | # Temporary hack until we have migrated to asm-powerpc | 58 | # Temporary hack until we have migrated to asm-powerpc |
59 | CPPFLAGS += -Iinclude3 | 59 | CPPFLAGS += -Iarch/$(ARCH)/include |
60 | 60 | ||
61 | GCC_VERSION := $(call cc-version) | 61 | GCC_VERSION := $(call cc-version) |
62 | GCC_BROKEN_VEC := $(shell if [ $(GCC_VERSION) -lt 0400 ] ; then echo "y"; fi ;) | 62 | GCC_BROKEN_VEC := $(shell if [ $(GCC_VERSION) -lt 0400 ] ; then echo "y"; fi ;) |
@@ -115,14 +115,15 @@ all: $(KBUILD_IMAGE) | |||
115 | 115 | ||
116 | archclean: | 116 | archclean: |
117 | $(Q)$(MAKE) $(clean)=$(boot) | 117 | $(Q)$(MAKE) $(clean)=$(boot) |
118 | $(Q)rm -rf include3 | 118 | # Temporary hack until we have migrated to asm-powerpc |
119 | $(Q)rm -rf arch/$(ARCH)/include | ||
119 | 120 | ||
120 | 121 | ||
121 | # Temporary hack until we have migrated to asm-powerpc | 122 | # Temporary hack until we have migrated to asm-powerpc |
122 | include/asm: include3/asm | 123 | include/asm: arch/$(ARCH)/include/asm |
123 | include3/asm: | 124 | arch/$(ARCH)/include/asm: |
124 | $(Q)if [ ! -d include3 ]; then mkdir -p include3; fi; | 125 | $(Q)if [ ! -d arch/$(ARCH)/include ]; then mkdir -p arch/$(ARCH)/include; fi |
125 | $(Q)ln -fsn $(srctree)/include/asm-powerpc include3/asm | 126 | $(Q)ln -fsn $(srctree)/include/asm-powerpc arch/$(ARCH)/include/asm |
126 | 127 | ||
127 | define archhelp | 128 | define archhelp |
128 | echo ' zImage.vmode - Compressed kernel image (arch/$(ARCH)/boot/zImage.vmode)' | 129 | echo ' zImage.vmode - Compressed kernel image (arch/$(ARCH)/boot/zImage.vmode)' |