Skip to content
Snippets Groups Projects
Commit ba414dba authored by Emil Velikov's avatar Emil Velikov
Browse files

automake: intel: correctly append to the LIBADD variable


Commit 05fc62d8 sets the variable, yet it forgot the update the
existing reference to append (instead of assign).

Thus as-is the expat library was discarded from the link chain when
building with Android.

Fixes: 05fc62d8 ("automake: intel: move expat handling where it's
used")
Cc: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: default avatarEmil Velikov <emil.velikov@collabora.com>
Reviewed-by: default avatarEric Engestrom <eric.engestrom@imgtec.com>
parent 6ef9482b
No related branches found
Tags gst-plugins-good-0.10.25
No related merge requests found
......@@ -27,5 +27,5 @@ common_libintel_common_la_LIBADD = $(EXPAT_LIBS)
if HAVE_PLATFORM_ANDROID
common_libintel_common_la_CFLAGS += $(ANDROID_CFLAGS)
common_libintel_common_la_LIBADD = $(ANDROID_LIBS)
common_libintel_common_la_LIBADD += $(ANDROID_LIBS)
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment