From cac4f31f1a9a21981ceaf3736f5b2773df974b44 Mon Sep 17 00:00:00 2001 From: Alessandro Decina Date: Mon, 22 Nov 2010 13:41:17 +0100 Subject: [PATCH] Fix distcheck. Before this change gst/__init__.py wasn't being copied to $(top_builddir)/gst/, making make check fail to import gst. --- configure.ac | 1 + gst/Makefile.am | 2 +- gst/{__init__.py => __init__.py.in} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename gst/{__init__.py => __init__.py.in} (100%) diff --git a/configure.ac b/configure.ac index 82dd416..2bf0d8a 100644 --- a/configure.ac +++ b/configure.ac @@ -421,4 +421,5 @@ AC_OUTPUT([ testsuite/Makefile win32/common/config.h gst-python.spec + gst/__init__.py ]) diff --git a/gst/Makefile.am b/gst/Makefile.am index d5d49da..a395997 100644 --- a/gst/Makefile.am +++ b/gst/Makefile.am @@ -82,7 +82,7 @@ GST_OVERRIDES = \ GST_DEFS = gst.defs gst-types.defs gst-extrafuncs.defs libs.defs base.defs CLEANFILES = gst.c EXTRA_DIST += $(GST_DEFS) $(GST_OVERRIDES) gstversion.override.in -gst.c: $(GST_DEFS) $(GST_OVERRIDES) $(GEN_FILES) gstversion.override +gst.c: $(GST_DEFS) $(GST_OVERRIDES) $(GEN_FILES) gstversion.override __init__.py # GStreamer interfaces bindings interfaces_la_CFLAGS = $(common_cflags) $(GST_PLUGINS_BASE_CFLAGS) diff --git a/gst/__init__.py b/gst/__init__.py.in similarity index 100% rename from gst/__init__.py rename to gst/__init__.py.in -- 2.7.4