Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
build
Commits
c1df498f
Commit
c1df498f
authored
8 years ago
by
Treehugger Robot
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Download
Plain Diff
Merge "Don't run find on directories that don't exist"
parents
a3ab4cc9
efb30be7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
core/aux_config.mk
core/aux_config.mk
+5
-1
No files found.
core/aux_config.mk
View file @
c1df498f
...
...
@@ -151,7 +151,11 @@ AUX_ALL_SUBARCHS :=
variant_sfx
:=
_aux_variant_config.mk
os_sfx
:=
_aux_os_config.mk
all_configs
:=
$(
shell
find device vendor
-maxdepth
4
-name
'*
$(variant_sfx)
'
-o
-name
'*
$(os_sfx)
'
|
sort
)
config_roots
:=
$(
wildcard
device vendor
)
all_configs
:=
ifdef
config_roots
all_configs
:=
$(
shell
find
$(config_roots)
-maxdepth
4
-name
'*
$(variant_sfx)
'
-o
-name
'*
$(os_sfx)
'
|
sort
)
endif
all_os_configs
:=
$(
filter
%
$(os_sfx)
,
$(all_configs)
)
all_variant_configs
:=
$(
filter
%
$(variant_sfx)
,
$(all_configs)
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment