We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ff1de commit 7afb0ddCopy full SHA for 7afb0dd
m5stack/include/files.mk
@@ -5,11 +5,11 @@
5
# $(1) board type
6
# $(2) target dir
7
define base-files/install
8
- @cp ./fs/user/* $(2)/ -rf
+ @cp -rf ./fs/user/* $(2)/
9
@ if [ -d ./fs/system/$(1) ]; then \
10
- cp ./fs/system/$(1) $(2)/res/ -rf ; \
+ cp -rf ./fs/system/$(1) $(2)/res/;\
11
fi
12
- @cp ./fs/system/common/img/avatar.jpg $(2)/res/img/ -rf
+ @cp -rf ./fs/system/common/img/avatar.jpg $(2)/res/img/
13
endef
14
15
0 commit comments