mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
75205828c7
Running installed gst-validate-launcher aborted with the following error.
File "lib/gst-validate-launcher/python/launcher/baseclasses.py", line 28, in <module>
import config
ImportError: No module named config
This is because config.py is added but not installed
in ba6d209b3f
.
https://bugzilla.gnome.org/show_bug.cgi?id=747087
19 lines
283 B
Makefile
19 lines
283 B
Makefile
launcherdir = $(libdir)/gst-validate-launcher/python/launcher/
|
|
|
|
SUBDIRS = \
|
|
apps
|
|
|
|
launcher_PYTHON = \
|
|
baseclasses.py \
|
|
__init__.py \
|
|
loggable.py \
|
|
reporters.py \
|
|
main.py \
|
|
httpserver.py \
|
|
RangeHTTPServer.py \
|
|
utils.py \
|
|
config.py
|
|
|
|
clean-local:
|
|
rm -rf *.pyc *.pyo
|
|
|