projects
/
openwrt
/
staging
/
xback.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d830403
)
tools: always create $STAGING_DIR/usr/{include,lib}
author
Andre Heider
<
[email protected]
>
Thu, 20 Aug 2020 06:06:37 +0000
(08:06 +0200)
committer
Petr Štetiar
<
[email protected]
>
Sun, 6 Dec 2020 07:31:03 +0000
(08:31 +0100)
rules.mk always passes these as -I/-L to the toolchain.
Fixes rare errors like:
cc1: error: staging_dir/target-aarch64_cortex-a53_musl/usr/include: No such file or directory [-Werror=missing-include-dirs]
Signed-off-by: Andre Heider <
[email protected]
>
Acked-by: Paul Spooren <
[email protected]
>
Acked-by: Rosen Penev <
[email protected]
>
[fixed merge conflict]
Signed-off-by: Petr Štetiar <
[email protected]
>
(cherry picked from commit
b0cb305236524095bfd899449b0ad8eb821cb3bb
)
tools/Makefile
patch
|
blob
|
history
diff --git
a/tools/Makefile
b/tools/Makefile
index d7207ba89dd91df558eaf970961fdef225aa1f37..b8d986b80cc4b34addf2b35a2b143cfcb583c717 100644
(file)
--- a/
tools/Makefile
+++ b/
tools/Makefile
@@
-123,7
+123,7
@@
define PrepareStaging
$(if $(QUIET),,set -x;) \
mkdir -p "$$dir"; \
cd "$$dir"; \
- mkdir -p bin lib include stamp; \
+ mkdir -p bin lib include stamp
usr/include usr/lib
; \
); done
endef