lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 8223017fed53b52e674ab7ee872793808ca01102
parent 583c062b1376f963dafa25bb523885239a8e34a7
Author: Michael Heimpold <mhei@heimpold.de>
Date:   Tue, 26 Jan 2016 21:48:50 +0100

automake: fix unversioned links during package build

Reported by buildbots (shortened and line-wrapped):
...
ln -sf -r .../ipkg-ramips_24kec/automake/usr/bin/automake-1.15
   .../ipkg-ramips_24kec/automake/usr/bin/automake
ln: invalid option -- 'r'

Signed-off-by: Michael Heimpold <mhei@heimpold.de>

Diffstat:
Mdevel/automake/Makefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/devel/automake/Makefile b/devel/automake/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2015 OpenWrt.org +# Copyright (C) 2015-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=automake PKG_VERSION:=1.15 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE_URL:=@GNU/automake PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -38,10 +38,10 @@ define Package/automake/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/automake-$(PKG_VERSION) \ $(1)/usr/bin/automake-$(PKG_VERSION) - $(LN) -r $(1)/usr/bin/automake-$(PKG_VERSION) $(1)/usr/bin/automake + $(LN) automake-$(PKG_VERSION) $(1)/usr/bin/automake $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/aclocal-$(PKG_VERSION) \ $(1)/usr/bin/aclocal-$(PKG_VERSION) - $(LN) -r $(1)/usr/bin/aclocal-$(PKG_VERSION) $(1)/usr/bin/aclocal + $(LN) aclocal-$(PKG_VERSION) $(1)/usr/bin/aclocal $(SED) 's|$(STAGING_DIR_HOST)|/usr|g' \ $(1)/usr/bin/automake-$(PKG_VERSION) $(SED) 's|$(STAGING_DIR_HOST)|/usr|g' \