f72be49830
Remove $(HOST_DIR)/bin/python from SCONS variable to allow each scons package to select their python interpreter. Indeed, most of the scons packages (alljoyn, benejson, gpsd) only supports python2 Fixes: - http://autobuild.buildroot.org/results/b45f9fb69615b80758adeff4571e170c3bd9356b - http://autobuild.buildroot.org/results/13144a7ebd64ef7889312053f06a14047eea232d Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
562 B
Makefile
20 lines
562 B
Makefile
################################################################################
|
|
#
|
|
# scons
|
|
#
|
|
################################################################################
|
|
|
|
SCONS_VERSION = 3.0.5
|
|
SCONS_SITE = http://downloads.sourceforge.net/project/scons/scons/$(SCONS_VERSION)
|
|
SCONS_LICENSE = MIT
|
|
SCONS_LICENSE_FILES = LICENSE.txt
|
|
SCONS_SETUP_TYPE = distutils
|
|
|
|
HOST_SCONS_INSTALL_OPTS = \
|
|
--install-lib=$(HOST_DIR)/lib/scons-$(SCONS_VERSION)
|
|
|
|
$(eval $(host-python-package))
|
|
|
|
# variables used by other packages
|
|
SCONS = $(HOST_DIR)/bin/scons $(if $(QUIET),-s)
|