From 75205828c719329072ae52414aaf49abdf2e7a55 Mon Sep 17 00:00:00 2001 From: Young Han Lee Date: Tue, 31 Mar 2015 09:20:05 +0900 Subject: [PATCH] validate:launcher: Install config.py for non-development mode Running installed gst-validate-launcher aborted with the following error. File "lib/gst-validate-launcher/python/launcher/baseclasses.py", line 28, in import config ImportError: No module named config This is because config.py is added but not installed in ba6d209b3fd062f4e6bd889f81f1213cc12339ec. https://bugzilla.gnome.org/show_bug.cgi?id=747087 --- validate/launcher/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/validate/launcher/Makefile.am b/validate/launcher/Makefile.am index b67e3de233..1a4c61d6e9 100644 --- a/validate/launcher/Makefile.am +++ b/validate/launcher/Makefile.am @@ -11,7 +11,8 @@ launcher_PYTHON = \ main.py \ httpserver.py \ RangeHTTPServer.py \ - utils.py + utils.py \ + config.py clean-local: rm -rf *.pyc *.pyo