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/openssl | |
parent | 499485004b52b5960c950922fb1dedcedd0923fa (diff) | |
download | master-187ad058-bb6c4aade1c3174895429f168d4eac7a67d312cd.tar.gz master-187ad058-bb6c4aade1c3174895429f168d4eac7a67d312cd.tar.bz2 master-187ad058-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/openssl')
-rw-r--r-- | package/openssl/Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/package/openssl/Makefile b/package/openssl/Makefile index 36b5b24e27..270fe5e755 100644 --- a/package/openssl/Makefile +++ b/package/openssl/Makefile @@ -109,21 +109,21 @@ define Build/Compile endef define Build/InstallDev - mkdir -p $(STAGING_DIR)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/openssl $(STAGING_DIR)/usr/include/ - mkdir -p $(STAGING_DIR)/usr/lib/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(STAGING_DIR)/usr/lib/ - mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig - $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc $(STAGING_DIR)/usr/lib/pkgconfig/ - $(SED) 's,^includedir=.*,includedir=$(STAGING_DIR)/usr/include,g' $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc - $(SED) 's,^libdir=.*,libdir=$(STAGING_DIR)/usr/lib,g' $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc - $(SED) 's,$(TARGET_LDFLAGS),,g' $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc + mkdir -p $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/openssl $(1)/usr/include/ + mkdir -p $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(1)/usr/lib/ + mkdir -p $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc $(1)/usr/lib/pkgconfig/ + $(SED) 's,^includedir=.*,includedir=$(1)/usr/include,g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc + $(SED) 's,^libdir=.*,libdir=$(1)/usr/lib,g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc + $(SED) 's,$(TARGET_LDFLAGS),,g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc endef define Build/UninstallDev - rm -rf $(STAGING_DIR)/usr/include/openssl \ - $(STAGING_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} \ - $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc + rm -rf $(1)/usr/include/openssl \ + $(1)/usr/lib/lib{crypto,ssl}.{a,so*} \ + $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc endef define Package/libopenssl/install |