automake: remove __init__.py's

This commit is contained in:
Mathieu Duponchelle 2018-10-28 17:51:44 +01:00
parent 055e2e17ec
commit a15ed715f0
2 changed files with 1 additions and 3 deletions

View file

@ -1,5 +1,4 @@
SUBDIRS = overrides
EXTRA_DIST = \
__init__.py \
meson.build

View file

@ -9,7 +9,6 @@ pygioverrides_PYTHON = Gst.py GstPbutils.py
pygioverridesexecdir = $(PYGI_OVERRIDES_DIR)
EXTRA_DIST = \
__init__.py \
meson.build \
Gst.py \
GstPbutils.py
@ -27,7 +26,7 @@ _gi_gst_la_LDFLAGS = $(common_ldflags)
# source tree; Python does not accept the extensions and modules in different
# paths
build_pylinks:
for f in $(pygioverrides_PYTHON) __init__.py; do \
for f in $(pygioverrides_PYTHON); do \
[ -e $(builddir)/$$f ] || $(LN_S) -f $(srcdir)/$$f $(builddir)/$$f; \
done