X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=tools%2Fscons%2FMakefile;h=2b02756829152399075ebcdd68ce36ccc4810073;hb=856fab1b64e5c299ab5a7dc6d33dfa733d7b75aa;hp=aadeb289a25952f48e00c35091c48f4e444acd63;hpb=768f0c40f8e1c389b1534a1ed456ead533ecffd0;p=openwrt-github%2F.git diff --git a/tools/scons/Makefile b/tools/scons/Makefile index aadeb289a2..2b02756829 100644 --- a/tools/scons/Makefile +++ b/tools/scons/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2011 OpenWrt.org +# Copyright (C) 2011-2013 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.0 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/scons -PKG_MD5SUM:=47daf989e303a045b76c11236df719df +PKG_MD5SUM:=083ce5624d6adcbdaf2526623f456ca9 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))