From 42092fe9286b1dad53d5c1d01176e6d160966587 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Sun, 19 Dec 2010 19:40:54 -0300 Subject: [PATCH] basecamerabinsrc: Fix makefile building order basecamerabinsrc must be built after photography interface as it depends on it. --- gst-libs/gst/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/Makefile.am b/gst-libs/gst/Makefile.am index 561c1f4e..5614580 100644 --- a/gst-libs/gst/Makefile.am +++ b/gst-libs/gst/Makefile.am @@ -3,7 +3,7 @@ if BUILD_EXPERIMENTAL EXPERIMENTAL_LIBS=basecamerabinsrc endif -SUBDIRS = $(EXPERIMENTAL_LIBS) interfaces signalprocessor video +SUBDIRS = interfaces signalprocessor video $(EXPERIMENTAL_LIBS) noinst_HEADERS = gst-i18n-plugin.h gettext.h -DIST_SUBDIRS = $(EXPERIMENTAL_LIBS) interfaces signalprocessor video +DIST_SUBDIRS = interfaces signalprocessor video $(EXPERIMENTAL_LIBS) -- 2.7.4