summaryrefslogtreecommitdiff
path: root/nuttx/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 00:13:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 00:13:13 +0000
commit711d70866a83ae674146d8c1798bd0054cac2392 (patch)
tree33d7e76c5410ae1a45f7f1a901337028017d46f3 /nuttx/Makefile
parent806f51d2d5a84e7745763155aea152614b5e244f (diff)
downloadnuttx-711d70866a83ae674146d8c1798bd0054cac2392.tar.gz
nuttx-711d70866a83ae674146d8c1798bd0054cac2392.tar.bz2
nuttx-711d70866a83ae674146d8c1798bd0054cac2392.zip
Need absolute paths for 'fake' links
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@534 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Makefile')
-rw-r--r--nuttx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/Makefile b/nuttx/Makefile
index 4a7e17aba..da4c10caf 100644
--- a/nuttx/Makefile
+++ b/nuttx/Makefile
@@ -141,13 +141,13 @@ $(ARCH_SRC)/board: Make.defs
# Link arch/<arch-name>/include/<chip-name> to arch/<arch-name>/include/chip
$(ARCH_SRC)/chip: Make.defs
ifneq ($(CONFIG_ARCH_CHIP),)
- @$(DIRLINK) $(CONFIG_ARCH_CHIP) $(ARCH_SRC)/chip
+ @$(DIRLINK) $(TOPDIR)/$(ARCH_SRC)/$(CONFIG_ARCH_CHIP) $(ARCH_SRC)/chip
endif
# Link arch/<arch-name>/src/<chip-name> to arch/<arch-name>/src/chip
include/arch/chip: include/arch Make.defs
ifneq ($(CONFIG_ARCH_CHIP),)
- @$(DIRLINK) $(CONFIG_ARCH_CHIP) include/arch/chip
+ @$(DIRLINK) $(TOPDIR)/$(ARCH_INC)/$(CONFIG_ARCH_CHIP) include/arch/chip
endif
dirlinks: include/arch include/arch/board include/arch/chip $(ARCH_SRC)/board $(ARCH_SRC)/chip