diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-09-28 01:45:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-09-28 01:45:11 +0000 |
commit | bb6c4aade1c3174895429f168d4eac7a67d312cd (patch) | |
tree | eb4212ed9fc412f6018213aec05fae3059ed20bf /package/wireless-tools | |
parent | 499485004b52b5960c950922fb1dedcedd0923fa (diff) | |
download | upstream-bb6c4aade1c3174895429f168d4eac7a67d312cd.tar.gz upstream-bb6c4aade1c3174895429f168d4eac7a67d312cd.tar.bz2 upstream-bb6c4aade1c3174895429f168d4eac7a67d312cd.zip |
add $(STAGING_DIR) as argument to the InstallDev template and update packages accordingly - this way we can reuse InstallDev to automatically generate UninstallDev or create -dev packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9052 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wireless-tools')
-rw-r--r-- | package/wireless-tools/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/wireless-tools/Makefile b/package/wireless-tools/Makefile index 6582af12d2..3e997a176c 100644 --- a/package/wireless-tools/Makefile +++ b/package/wireless-tools/Makefile @@ -49,16 +49,16 @@ define Build/Compile endef define Build/InstallDev - mkdir -p $(STAGING_DIR)/usr/include - $(CP) $(PKG_BUILD_DIR)/{iwlib,wireless}.h $(STAGING_DIR)/usr/include/ - mkdir -p $(STAGING_DIR)/usr/lib - $(CP) $(PKG_BUILD_DIR)/libiw.so* $(STAGING_DIR)/usr/lib/ - ln -sf libiw.so.$(PKG_VERSION) $(STAGING_DIR)/usr/lib/libiw.so + mkdir -p $(1)/usr/include + $(CP) $(PKG_BUILD_DIR)/{iwlib,wireless}.h $(1)/usr/include/ + mkdir -p $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/libiw.so* $(1)/usr/lib/ + ln -sf libiw.so.$(PKG_VERSION) $(1)/usr/lib/libiw.so endef define Build/UninstallDev - rm -f $(STAGING_DIR)/usr/include/{iwlib,wireless}.h \ - $(STAGING_DIR)/usr/lib/libiw.so* + rm -f $(1)/usr/include/{iwlib,wireless}.h \ + $(1)/usr/lib/libiw.so* endef define Package/wireless-tools/install |