diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-06 02:57:06 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-06 02:57:06 +0000 |
commit | d1b1cda191e6e5093546b3a88747b96524199fc3 (patch) | |
tree | 3bc3dd4dc3a6e955a0fa70a2c2de84c3f8f3ed4c | |
parent | 55807e35d6b4188a49b2b7544cd545a039e23da6 (diff) |
remove uneeded stuff after python changes in [8639]
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8640 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/package.mk | 11 | ||||
-rwxr-xr-x | scripts/pylibdir.py | 5 |
2 files changed, 0 insertions, 16 deletions
diff --git a/include/package.mk b/include/package.mk index 0c8886c78..591816b75 100644 --- a/include/package.mk +++ b/include/package.mk @@ -125,17 +125,6 @@ define Build/Compile $(call Build/Compile/Default,) endef -define Build/Compile/PyMod - ( cd $(PKG_BUILD_DIR); \ - CFLAGS="$(TARGET_CFLAGS)" \ - CPPFLAGS="$(TARGET_CPPFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ - $(1) \ - $(STAGING_DIR)/usr/bin/hostpython ./setup.py $(2) \ - --prefix="$(PKG_INSTALL_DIR)/usr" \ - ) -endef - $(PACKAGE_DIR): mkdir -p $@ diff --git a/scripts/pylibdir.py b/scripts/pylibdir.py deleted file mode 100755 index 05b5afbdb..000000000 --- a/scripts/pylibdir.py +++ /dev/null @@ -1,5 +0,0 @@ -# Note #! intentionally left out. This should be called with the version of -# python you care about. - -import sys -print ("/usr/lib/python%s.%s/site-packages" % (sys.version_info[0], sys.version_info[1],)) |