X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=tools%2Fscons%2FMakefile;h=7654f57dd850effd52b9cde9a7a500afe87d64d7;hb=1100b0c3971772f11319729497a17e02e0595d83;hp=aadeb289a25952f48e00c35091c48f4e444acd63;hpb=768f0c40f8e1c389b1534a1ed456ead533ecffd0;p=openwrt-github%2F.git diff --git a/tools/scons/Makefile b/tools/scons/Makefile index aadeb289a2..7654f57dd8 100644 --- a/tools/scons/Makefile +++ b/tools/scons/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2011 OpenWrt.org +# Copyright (C) 2011-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=scons -PKG_VERSION:=2.1.0 +PKG_VERSION:=2.3.5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/scons -PKG_MD5SUM:=47daf989e303a045b76c11236df719df +PKG_MD5SUM:=8b0d1041266f89b18e47f26d943f8aa5 include $(INCLUDE_DIR)/host-build.mk @@ -23,7 +23,12 @@ define Host/Compile endef define Host/Install - python $(HOST_BUILD_DIR)/setup.py install --prefix=$(STAGING_DIR_HOST) + ./files/pywrap.sh $(HOST_BUILD_DIR)/setup.py install --prefix=$(STAGING_DIR_HOST) + rm -f $(STAGING_DIR_HOST)/bin/scons*.py + for bin in $(STAGING_DIR_HOST)/bin/scons*; do \ + mv "$$$$bin" "$$$$bin.py"; \ + cp ./files/pywrap.sh "$$$$bin"; \ + done endef $(eval $(call HostBuild))