Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile.webui: use configured python interpreter
  • Loading branch information
perexg committed May 16, 2015
1 parent e3d7e3c commit ea70c10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.webui
Expand Up @@ -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)
Expand Down

0 comments on commit ea70c10

Please sign in to comment.