diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-01-12 19:03:39 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-01-12 19:03:39 +0000 |
commit | 7abbd7ad6fc3041e0927174da63ac812b070e5fc (patch) | |
tree | ad677d910215005c82289bb13b02c502682ba425 /toolchain/kernel-headers/Makefile | |
parent | 9cdedff7f48aceea0d35a7923608648b45236231 (diff) | |
download | upstream-7abbd7ad6fc3041e0927174da63ac812b070e5fc.tar.gz upstream-7abbd7ad6fc3041e0927174da63ac812b070e5fc.tar.bz2 upstream-7abbd7ad6fc3041e0927174da63ac812b070e5fc.zip |
[cris] fix missing ptrace.h needed to build final gcc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13995 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/kernel-headers/Makefile')
-rw-r--r-- | toolchain/kernel-headers/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/toolchain/kernel-headers/Makefile b/toolchain/kernel-headers/Makefile index 2274ee2447..474ff6c71b 100644 --- a/toolchain/kernel-headers/Makefile +++ b/toolchain/kernel-headers/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2008 OpenWrt.org +# Copyright (C) 2006-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -106,6 +106,14 @@ define Build/Install/post/lzma $(TOOLCHAIN_DIR)/usr/include/asm/ endef +# XXX: the following is needed to build final gcc on cris +define Build/Install/post/cris + mkdir -p $(TOOLCHAIN_DIR)/usr/include/asm/arch + $(CP) \ + $(PKG_BUILD_DIR)/include/asm-cris/arch/ptrace.h \ + $(TOOLCHAIN_DIR)/usr/include/asm/arch/ +endef + define Build/Install/post/mips $(call Build/Install/post/lzma) endef |