mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 08:38:38 +08:00
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
This commit is contained in:
parent
69939381a5
commit
493102b322
3 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,7 @@
|
|||
# define STM32_NEXTI 19
|
||||
# define STM32_EXTI_MASK 0x0007ffff
|
||||
# endif
|
||||
#eif defined(CONFIG_STM32_STM32F30XX)
|
||||
#elif defined(CONFIG_STM32_STM32F30XX)
|
||||
# define STM32_NEXTI1 31
|
||||
# define STM32_EXTI1_MASK 0xffffffff
|
||||
# define STM32_NEXTI2 4
|
||||
|
|
|
@ -44,7 +44,7 @@ $(BIN)$(EXEEXT): $(SRC)
|
|||
$(HOSTCC) $(HOSTCFLAGS) $^ -o $@
|
||||
|
||||
..$(DELIM)bin$(DELIM)$(BIN)$(EXEEXT): $(BIN)$(EXEEXT)
|
||||
install --mode 0755 $^ $@
|
||||
install -m 0755 $^ $@
|
||||
|
||||
clean:
|
||||
$(call DELFILE, $(BIN)$(EXEEXT))
|
||||
|
|
|
@ -246,7 +246,7 @@ cat $rcstemplate | \
|
|||
|
||||
# And install it at the specified relative location
|
||||
|
||||
install -D --mode=0755 $rcsfile $workingdir/$uinitscript || \
|
||||
install -D -m 0755 $rcsfile $workingdir/$uinitscript || \
|
||||
{ echo "Failed to install $rcsfile at $workingdir/$uinitscript"; rm -f $rcsfile; exit 1; }
|
||||
rm -f $rcsfile
|
||||
|
||||
|
|
Loading…
Reference in a new issue