Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AndroidSystemSEPolicy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Matombo
AndroidSystemSEPolicy
Commits
10c1e872
Commit
10c1e872
authored
Aug 11, 2015
by
Dan Willemsen
Committed by
Android Git Automerger
Aug 11, 2015
Browse files
Options
Downloads
Plain Diff
am
bc2a49f2
: Don\'t assume ordering of
* commit '
bc2a49f2
': Don't assume ordering of $(wildcard ...)
parents
e344377d
bc2a49f2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Android.mk
+2
-2
2 additions, 2 deletions
Android.mk
with
2 additions
and
2 deletions
Android.mk
+
2
−
2
View file @
10c1e872
...
...
@@ -28,7 +28,7 @@ endif
# Builds paths for all policy files found in BOARD_SEPOLICY_DIRS.
# $(1): the set of policy name paths to build
build_policy
=
$(
foreach
type
,
$(
1
)
,
$(
wildcard
$(
addsuffix /
$(
type
)
,
$(
LOCAL_PATH
)
$(
BOARD_SEPOLICY_DIRS
))))
build_policy
=
$(
foreach
type
,
$(
1
)
,
$(
foreach file,
$(
addsuffix /
$(
type
)
,
$(
LOCAL_PATH
)
$(
BOARD_SEPOLICY_DIRS
))
,
$(
sort
$(
wildcard
$(
file
)))
))
sepolicy_build_files
:=
security_classes
\
initial_sids
\
...
...
@@ -117,7 +117,7 @@ LOCAL_MODULE_TAGS := tests
include
$(BUILD_SYSTEM)/base_rules.mk
exp_sepolicy_build_files
:=
\
$(
wildcard
$(
addprefix
$(
LOCAL_PATH
)
/,
$(
sepolicy_build_files
)))
$(
foreach file,
$(
addprefix
$(
LOCAL_PATH
)
/,
$(
sepolicy_build_files
))
,
$(
sort
$(
wildcard
$(
file
)))
)
$(LOCAL_BUILT_MODULE)
:
PRIVATE_MLS_SENS := $(MLS_SENS)
$(LOCAL_BUILT_MODULE)
:
PRIVATE_MLS_CATS := $(MLS_CATS)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment