Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Ewout ter Hoeven
VLC-Android
Commits
dc4a26b3
Commit
dc4a26b3
authored
Aug 08, 2016
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation on some systems where pkg-config defaults to system path
parent
48507325
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
compile-libvlc.sh
compile-libvlc.sh
+1
-1
No files found.
compile-libvlc.sh
View file @
dc4a26b3
...
...
@@ -635,7 +635,7 @@ VLC_MODULES=$(find_modules ${REDEFINED_VLC_MODULES_DIR})
VLC_SRC_DIR
=
"
$SRC_DIR
/vlc"
ANDROID_SYS_HEADERS
=
"
$SRC_DIR
/android-headers"
VLC_CONTRIB
=
"
$VLC_SRC_DIR
/contrib/
$TARGET_TUPLE
"
VLC_CONTRIB_LDFLAGS
=
`
for
i
in
$(
/bin/ls
$VLC_CONTRIB
/lib/pkgconfig/
*
.pc
)
;
do
pkg-config
--libs
$i
;
done
|xargs
`
VLC_CONTRIB_LDFLAGS
=
`
for
i
in
$(
/bin/ls
$VLC_CONTRIB
/lib/pkgconfig/
*
.pc
)
;
do
PKG_CONFIG_PATH
=
"
$VLC_CONTRIB
/lib/pkgconfig/"
pkg-config
--libs
$i
;
done
|xargs
`
if
[
"
${
CHROME_OS
}
"
!=
"1"
]
;
then
if
[
"
${
HAVE_64
}
"
!=
1
]
;
then
...
...
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