blob: 05b991a8f04314dde866ec740efe25de8be48799 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 7d8e8b8bcce34d01fc7ad7285b4eb17ad8949399 Mon Sep 17 00:00:00 2001
2From: Anuj Mittal <anuj.mittal@intel.com>
3Date: Wed, 11 Apr 2018 11:06:39 +0800
4Subject: [PATCH] Makefile.am: don't hardcode libtool name when running
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05005 introspection tools
6
7Upstream-Status: Pending [review on oe-core list]
8Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009Signed-off-by: Maxin B. John <maxin.john@intel.com>
10---
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011 gst-libs/gst/insertbin/Makefile.am | 2 +-
12 gst-libs/gst/mpegts/Makefile.am | 2 +-
13 2 files changed, 2 insertions(+), 2 deletions(-)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015diff --git a/gst-libs/gst/insertbin/Makefile.am b/gst-libs/gst/insertbin/Makefile.am
16index 1f8ea30..4b98ef6 100644
17--- a/gst-libs/gst/insertbin/Makefile.am
18+++ b/gst-libs/gst/insertbin/Makefile.am
19@@ -45,7 +45,7 @@ GstInsertBin-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstinsertbin-@GS
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050020 --library=libgstinsertbin-@GST_API_VERSION@.la \
21 --include=Gst-@GST_API_VERSION@ \
22 --include=GstBase-@GST_API_VERSION@ \
23- --libtool="$(top_builddir)/libtool" \
24+ --libtool="$(LIBTOOL)" \
25 --pkg gstreamer-@GST_API_VERSION@ \
26 --pkg gstreamer-base-@GST_API_VERSION@ \
27 --pkg-export gstreamer-insertbin-@GST_API_VERSION@ \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028diff --git a/gst-libs/gst/mpegts/Makefile.am b/gst-libs/gst/mpegts/Makefile.am
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080029index f264e33..9934a4d 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050030--- a/gst-libs/gst/mpegts/Makefile.am
31+++ b/gst-libs/gst/mpegts/Makefile.am
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032@@ -82,7 +82,7 @@ GstMpegts-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstmpegts-@GST_API_
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050033 --add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-video-@GST_API_VERSION@` \
34 --library=libgstmpegts-@GST_API_VERSION@.la \
35 --include=Gst-@GST_API_VERSION@ \
36- --libtool="$(top_builddir)/libtool" \
37+ --libtool="$(LIBTOOL)" \
38 --pkg gstreamer-@GST_API_VERSION@ \
39 --pkg gstreamer-video-@GST_API_VERSION@ \
40 --pkg-export gstreamer-mpegts-@GST_API_VERSION@ \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050041--
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800422.7.4
Brad Bishopd7bf8c12018-02-25 22:55:05 -050043