From d9ac685b16bf68a3b66996ea43d6d345159f2208 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 3 Mar 2013 21:41:21 +0000 Subject: Two fixes from Mike Smith: (1) use -m install of --mode in install commands, (2) fix typo in stm32_exti.h introduced with the STM32 F3 port git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5701 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/posix_spawn/filesystem/Makefile | 2 +- apps/examples/posix_spawn/filesystem/redirect/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/examples/posix_spawn') diff --git a/apps/examples/posix_spawn/filesystem/Makefile b/apps/examples/posix_spawn/filesystem/Makefile index 26897426c..7e25ce241 100644 --- a/apps/examples/posix_spawn/filesystem/Makefile +++ b/apps/examples/posix_spawn/filesystem/Makefile @@ -66,7 +66,7 @@ redirect/redirect: $(ROMFS_IMG): hello/hello redirect/redirect testdata.txt $(ROMFS_DIR) $(Q) $(MAKE) -C hello install TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)" $(Q) $(MAKE) -C redirect install TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" ROMFS_DIR="$(ROMFS_DIR)" - $(Q) install --mode=0644 testdata.txt $(ROMFS_DIR)/testdata.txt + $(Q) install -m 0644 testdata.txt $(ROMFS_DIR)/testdata.txt $(Q) genromfs -f $@ -d $(ROMFS_DIR) -V "POSIXSPAWN" # Create the romfs.h header file from the romfs.img file diff --git a/apps/examples/posix_spawn/filesystem/redirect/Makefile b/apps/examples/posix_spawn/filesystem/redirect/Makefile index 421ff014a..e5f5e985c 100644 --- a/apps/examples/posix_spawn/filesystem/redirect/Makefile +++ b/apps/examples/posix_spawn/filesystem/redirect/Makefile @@ -56,4 +56,4 @@ clean: install: $(Q) mkdir -p $(ROMFS_DIR) - $(Q) install --mode=0755 $(BIN) $(ROMFS_DIR)/$(BIN) + $(Q) install -m 0755 $(BIN) $(ROMFS_DIR)/$(BIN) -- cgit v1.2.3