summaryrefslogtreecommitdiffstats
path: root/src/intel/Makefile.common.am
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-10-23 13:29:30 +0100
committerEmil Velikov <[email protected]>2017-11-08 14:23:57 +0000
commitba414dba4f1bf354cc9494fd76e3e28b489f13a1 (patch)
tree31fe27cdf5d195cc06572298c115135095c5bbbd /src/intel/Makefile.common.am
parent6ef9482b78d5c486f4d40785b7f04c3dabf81ff9 (diff)
automake: intel: correctly append to the LIBADD variable
Commit 05fc62d89f5 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: 05fc62d89f5 ("automake: intel: move expat handling where it's used") Cc: Hongxu Jia <[email protected]> Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/intel/Makefile.common.am')
-rw-r--r--src/intel/Makefile.common.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/Makefile.common.am b/src/intel/Makefile.common.am
index 894dbb5208c..443cefc522a 100644
--- a/src/intel/Makefile.common.am
+++ b/src/intel/Makefile.common.am
@@ -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