From ea70c109d88620226f62a37366e82e703877337f Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sat, 16 May 2015 23:15:44 +0200 Subject: [PATCH] Makefile.webui: use configured python interpreter --- Makefile.webui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.webui b/Makefile.webui index 6659b8818..686688cf3 100644 --- a/Makefile.webui +++ b/Makefile.webui @@ -29,9 +29,9 @@ ifneq ($(WEBUI),) TOPDIR=$(dir $(IAM)) include $(TOPDIR)/.config.mk EXTJSPATH = $(ROOTPATH)/extjs -CSS_PY = PYTHONIOENCODING=utf-8 support/css.py -RUN_JS = PYTHONIOENCODING=utf-8 vendor/rjsmin-1.0.10/rjsmin.py -RUN_CSS = PYTHONIOENCODING=utf-8 vendor/rcssmin-1.0.5/rcssmin.py +CSS_PY = PYTHONIOENCODING=utf-8 $(PYTHON) support/css.py +RUN_JS = PYTHONIOENCODING=utf-8 $(PYTHON) vendor/rjsmin-1.0.10/rjsmin.py +RUN_CSS = PYTHONIOENCODING=utf-8 $(PYTHON) vendor/rcssmin-1.0.5/rcssmin.py GZIP = gzip -n ifeq ($(WEBUI),std) -- 2.47.2