From: Jo-Philipp Wich Date: Fri, 10 Dec 2010 16:03:27 +0000 (+0000) Subject: automake: use symlinks instead of hardlinks to link aclocal versions X-Git-Tag: v19.07.0-rc1~28781 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=127c395a0eb99d4d84bdc87c205ed7fd63dd5336;p=openwrt%2Fstaging%2Fhauke.git automake: use symlinks instead of hardlinks to link aclocal versions SVN-Revision: 24425 --- diff --git a/tools/automake/Makefile b/tools/automake/Makefile index 932d3ee847..ee7966aeeb 100644 --- a/tools/automake/Makefile +++ b/tools/automake/Makefile @@ -29,10 +29,10 @@ define Host/Install $(MAKE) -C $(HOST_BUILD_DIR) install mv $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal.real $(INSTALL_BIN) ./files/aclocal $(STAGING_DIR_HOST)/bin - ln -f $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.9 - ln -f $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.10 - ln -f $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.11 - ln -f $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.11.1 + ln -sf $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.9 + ln -sf $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.10 + ln -sf $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.11 + ln -sf $(STAGING_DIR_HOST)/bin/aclocal $(STAGING_DIR_HOST)/bin/aclocal-1.11.1 endef define Host/Clean