Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | From c1700f867f876ee33c130a8e28b688e2b1d89663 Mon Sep 17 00:00:00 2001 |
| 2 | From: Anuj Mittal <anuj.mittal@intel.com> |
| 3 | Date: Wed, 11 Apr 2018 17:14:55 +0800 |
| 4 | Subject: [PATCH] Prevent host contamination |
| 5 | |
| 6 | Remove reference to host $(libdir) from .la files. |
| 7 | |
| 8 | Upstream-Status: Inappropriate [cross-compile specific] |
| 9 | |
| 10 | Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> |
| 11 | --- |
| 12 | gst-libs/ext/Makefile.am | 4 ++-- |
| 13 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 14 | |
| 15 | diff --git a/gst-libs/ext/Makefile.am b/gst-libs/ext/Makefile.am |
| 16 | index 6cdc048..a19d255 100644 |
| 17 | --- a/gst-libs/ext/Makefile.am |
| 18 | +++ b/gst-libs/ext/Makefile.am |
| 19 | @@ -49,7 +49,7 @@ echo " GEN $1.la" && \ |
| 20 | echo "library_names=''" && \ |
| 21 | echo "old_library='$1.a'" && \ |
| 22 | echo "inherited_linker_flags=''" && \ |
| 23 | - echo "dependency_libs=' -L$(libdir) $(if $2,$(foreach dep,$2,$(abs_builddir)/$(dep).la)) $(call find_library_la,$3 $(LIBM),$(LDFLAGS)) '" && \ |
| 24 | + echo "dependency_libs=' -L $(if $2,$(foreach dep,$2,$(abs_builddir)/$(dep).la)) $(call find_library_la,$3 $(LIBM),$(LDFLAGS)) '" && \ |
| 25 | echo "weak_library_names=''" && \ |
| 26 | echo "current=" && \ |
| 27 | echo "age=" && \ |
| 28 | @@ -58,7 +58,7 @@ echo " GEN $1.la" && \ |
| 29 | echo "shouldnotlink=no" && \ |
| 30 | echo "dlopen=''" && \ |
| 31 | echo "dlpreopen=''" && \ |
| 32 | - echo "libdir='$(libdir)'") > $1.la |
| 33 | + echo "libdir=''") > $1.la |
| 34 | endef |
| 35 | |
| 36 | libavutil.la: |