From: nbd Date: Wed, 3 Sep 2008 13:19:41 +0000 (+0000) Subject: change the an openssl sed command to be safe for -Wl,-rpath-link in ldflags X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=23d5f9b0ac227ad7b0986f8626d6ebf9c5ec0241 change the an openssl sed command to be safe for -Wl,-rpath-link in ldflags git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12511 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/openssl/Makefile b/package/openssl/Makefile index f19551df3..dce755053 100644 --- a/package/openssl/Makefile +++ b/package/openssl/Makefile @@ -122,7 +122,7 @@ define Build/InstallDev $(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,$(TARGET_LDFLAGS),,g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc + $(SED) 's#$(TARGET_LDFLAGS)##g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc endef define Package/libopenssl/install