From 4c0055e628afb43fa2b2919376ab96a82ede6af8 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 19 Mar 2011 15:02:01 +0000 Subject: Move VSN apps to apps/vsn git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3397 42af7a65-404d-4744-a932-0658087f49c3 --- misc/buildroot/ChangeLog | 3 +++ misc/buildroot/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'misc/buildroot') 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 .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): -- cgit v1.2.3