From afce2f81622e14f0903ccfe1c01cd65e7f2eec04 Mon Sep 17 00:00:00 2001 From: Timo Aaltonen Date: Tue, 3 Sep 2013 00:01:12 +0300 Subject: Use /usr/bin/python as fallback python path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a21cf7e3..428f19b1 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ ifneq ($(DEVELOPER_MODE),0) LINT_OPTIONS=--no-fail endif -PYTHON ?= $(shell rpm -E %__python) +PYTHON ?= $(shell rpm -E %__python || echo /usr/bin/python) all: bootstrap-autogen server tests @for subdir in $(SUBDIRS); do \ -- cgit