From: lars Date: Thu, 4 Sep 2008 22:36:50 +0000 (+0000) Subject: Fix python dbus install. X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=3862b3e26312a27f30458bc5546f3aec7af15a49;p=packages.git Fix python dbus install. git-svn-id: svn://svn.openwrt.org/openwrt/packages@12533 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/lang/python-dbus/Makefile b/lang/python-dbus/Makefile index 494af8e07..c8773d756 100644 --- a/lang/python-dbus/Makefile +++ b/lang/python-dbus/Makefile @@ -42,21 +42,21 @@ endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include/dbus-1.0/dbus/ - $(INSTALL_DATA) $(STAGING_DIR)/usr/include/dbus-1.0/dbus/* \ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/dbus-1.0/dbus/* \ $(1)/usr/include/dbus-1.0/dbus/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/ - $(INSTALL_DATA) $(STAGING_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig endef define Package/dbus-python/install $(INSTALL_DIR) $(1)/usr/lib/python2.5/site-packages/ - $(INSTALL_DATA) $(STAGING_DIR)/usr/lib/python2.5/site-packages/*.{py,so,a} \ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/python2.5/site-packages/*.{py,so,a} \ $(1)/usr/lib/python2.5/site-packages/ $(INSTALL_DIR) $(1)/usr/lib/python2.5/site-packages/dbus/ - $(INSTALL_DATA) $(STAGING_DIR)/usr/lib/python2.5/site-packages/dbus/*.py \ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/python2.5/site-packages/dbus/*.py \ $(1)/usr/lib/python2.5/site-packages/dbus/ $(INSTALL_DIR) $(1)/usr/lib/python2.5/site-packages/dbus/mainloop/ - $(INSTALL_DATA) $(STAGING_DIR)/usr/lib/python2.5/site-packages/dbus/mainloop/*.py \ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/python2.5/site-packages/dbus/mainloop/*.py \ $(1)/usr/lib/python2.5/site-packages/dbus/mainloop/ endef