diff options
author | Travis Kemen <thepeople@openwrt.org> | 2010-03-15 03:59:14 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2010-03-15 03:59:14 +0000 |
commit | 95e564124cc736c112e2fb567eee8c6b09946445 (patch) | |
tree | 2dff49fcff526dac1d98f5b783d39e781b1e5b03 /package/linux-atm/Makefile | |
parent | f8f71a88b471b13031d364b1300ed0071eb12969 (diff) | |
download | upstream-95e564124cc736c112e2fb567eee8c6b09946445.tar.gz upstream-95e564124cc736c112e2fb567eee8c6b09946445.tar.bz2 upstream-95e564124cc736c112e2fb567eee8c6b09946445.zip |
fixup linux-atm package after the broken patch earlier
SVN-Revision: 20225
Diffstat (limited to 'package/linux-atm/Makefile')
-rw-r--r-- | package/linux-atm/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/package/linux-atm/Makefile b/package/linux-atm/Makefile index 3321425ed5..0e469c7a7f 100644 --- a/package/linux-atm/Makefile +++ b/package/linux-atm/Makefile @@ -46,7 +46,10 @@ define Build/Prepare endef define Build/Configure - $(call Build/Configure/Default) + (cd $(PKG_BUILD_DIR); \ + ./configure \ + ) + #$(call Build/Configure/Default) # prevent autoheader invocation touch $(PKG_BUILD_DIR)/stamp-h.in endef @@ -60,22 +63,22 @@ endef ifneq ($(CONFIG_PACKAGE_linux-atm),) define Build/InstallDev mkdir -p $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \ + $(CP) $(PKG_BUILD_DIR)/src/include/atm{,d,sap}.h \ $(1)/usr/include/ mkdir -p $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \ + $(CP) $(PKG_BUILD_DIR)/src/lib/.libs/libatm.{a,so*} \ $(1)/usr/lib/ endef endif define Package/linux-atm/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.so.* $(1)/usr/lib/ + $(CP) $(PKG_BUILD_DIR)/src/lib/.libs/libatm.so.* $(1)/usr/lib/ endef define Package/atm-tools/install $(INSTALL_DIR) $(1)/usr/sbin/ - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/atmarp{,d} $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/arpd/atmarp{,d} $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/lib/network $(INSTALL_BIN) ./files/ipoa.sh $(1)/lib/network/ $(INSTALL_DIR) $(1)/usr/bin/ |