Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
528
Issue boards
Milestones
Wiki
Code
Merge requests
14
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
f83e15d6
Commit
f83e15d6
authored
8 years ago
by
Steve Lhomme
Committed by
Thomas Guillem
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
build: Android.mk run shell commands with $(shell)
Signed-off-by:
Thomas Guillem
<
thomas@gllm.fr
>
parent
c0429771
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libvlc/private_libs/Android.mk
+2
-2
2 additions, 2 deletions
libvlc/private_libs/Android.mk
with
2 additions
and
2 deletions
libvlc/private_libs/Android.mk
+
2
−
2
View file @
f83e15d6
...
...
@@ -11,12 +11,12 @@ ANDROID_PRIVATE_LIBS=$(ANDROID_PRIVATE_LIBDIR)/$(TARGET_TUPLE)/libstagefright.so
$(
ANDROID_PRIVATE_LIBDIR
)
/
$(
TARGET_TUPLE
)
/libhardware.so
$(ANDROID_PRIVATE_LIBDIR)/$(TARGET_TUPLE)/%.so
:
$(ANDROID_PRIVATE_LIBDIR)/%.c
mkdir
-p
$(
ANDROID_PRIVATE_LIBDIR
)
/
$(
TARGET_TUPLE
)
$(
shell
mkdir
-p
$(
ANDROID_PRIVATE_LIBDIR
)
/
$(
TARGET_TUPLE
)
)
$(
GEN
)
clang
$<
-shared
-o
$@
$(ANDROID_PRIVATE_LIBDIR)/%.c
:
$(ANDROID_PRIVATE_LIBDIR)/%.symbols
$(
VERBOSE
)
rm
-f
$@
&&
touch
$@
$(
GEN
)
for
s
in
`
cat
$<
`
;
do
echo
"void
$$
s() {}"
>>
$@
;
done
$(
GEN
)
$(
shell
for
s
in
`
cat
$<
`
;
do
echo
\
"
void
$$
s
(
)
{}
\
"
>>
$@
;
done
)
###########
# libiOMX #
...
...
This diff is collapsed.
Click to expand it.
Thomas Guillem
@tguillem
Mentioned in commit
9157cdfa
·
8 years ago
Mentioned in commit
9157cdfa
Mentioned in commit 9157cdfa4a20cf98d9c82de5709f7f7935db220d
Toggle commit list
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
register
or
sign in
to comment