diff options
author | Nicolas Thill <nico@openwrt.org> | 2015-04-03 00:07:43 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2015-04-03 00:07:43 +0000 |
commit | 9456cf255e95022d0c40afaf88c41177f9ac14c9 (patch) | |
tree | 686b0d657f68ac831587057ce6fdc54b3dfd511d /package/libs/libbsd | |
parent | 1243352b6bf93a2fb72155ac45fd0e5116bb70ae (diff) | |
download | upstream-9456cf255e95022d0c40afaf88c41177f9ac14c9.tar.gz upstream-9456cf255e95022d0c40afaf88c41177f9ac14c9.tar.bz2 upstream-9456cf255e95022d0c40afaf88c41177f9ac14c9.zip |
packages: use $(LN) macro, make symlinks relative
Signed-off-by: Nicolas Thill <nico@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45250 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libs/libbsd')
-rw-r--r-- | package/libs/libbsd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libs/libbsd/Makefile b/package/libs/libbsd/Makefile index fb38837e45..ca5e76179f 100644 --- a/package/libs/libbsd/Makefile +++ b/package/libs/libbsd/Makefile @@ -39,7 +39,7 @@ define Build/InstallDev $(PKG_INSTALL_DIR)/usr/include/* \ $(1)/usr/include/ - ( cd $(1)/lib ; ln -s libbsd.so.$(PKG_VERSION) libbsd.so ) + ( cd $(1)/lib ; $(LN) libbsd.so.$(PKG_VERSION) libbsd.so ) endef define Package/libbsd/install @@ -50,7 +50,7 @@ define Package/libbsd/install $(PKG_INSTALL_DIR)/lib/libbsd.so* \ $(1)/lib/ - ( cd $(1)/lib ; ln -s libbsd.so.$(PKG_VERSION) libbsd.so ) + ( cd $(1)/lib ; $(LN) libbsd.so.$(PKG_VERSION) libbsd.so ) endef $(eval $(call BuildPackage,libbsd)) |