summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-19 15:02:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-19 15:02:01 +0000
commit4c0055e628afb43fa2b2919376ab96a82ede6af8 (patch)
tree828a641d8c7195ac3073ea3daa81755dbc322ef4 /misc
parentbc284a1fde0acaadb4c88bee73f9a4d85323196b (diff)
downloadpx4-nuttx-4c0055e628afb43fa2b2919376ab96a82ede6af8.tar.gz
px4-nuttx-4c0055e628afb43fa2b2919376ab96a82ede6af8.tar.bz2
px4-nuttx-4c0055e628afb43fa2b2919376ab96a82ede6af8.zip
Move VSN apps to apps/vsn
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3397 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'misc')
-rw-r--r--misc/buildroot/ChangeLog3
-rw-r--r--misc/buildroot/Makefile2
2 files changed, 4 insertions, 1 deletions
diff --git a/misc/buildroot/ChangeLog b/misc/buildroot/ChangeLog
index 3ea2b60f3..c871bdd49 100644
--- a/misc/buildroot/ChangeLog
+++ b/misc/buildroot/ChangeLog
@@ -89,4 +89,7 @@ buildroot-1.10 2011-xx-xx <spudmonkey@racsa.co.cr>
.exe files). That is probably not usable for most NuttX targets.
Instead, you should use this i486-elf-gcc to generate true ELF binaries
under Cygwin.
+ * Makefile - Alter copy arguements to avoid permissions problems when
+ copying NuttX header files.
+
diff --git a/misc/buildroot/Makefile b/misc/buildroot/Makefile
index 5000dec8f..166b13c04 100644
--- a/misc/buildroot/Makefile
+++ b/misc/buildroot/Makefile
@@ -122,7 +122,7 @@ $(NUTTX_DIR)/include/arch: $(NUTTX_DIR)
$(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/include : $(STAGING_DIR) $(NUTTX_DIR)/include/arch
@mkdir -p $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/include || \
{ echo "Failed to create $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/include" ; exit 1 ; }
- @cp -a $(NUTTX_DIR)/include/* $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/include/. || \
+ @cp -aLf $(NUTTX_DIR)/include/* $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/include/. || \
{ echo "Failed to copy Nuttx header files" ; exit 1 ; }
$(TOOL_BUILD_DIR):