From: David Anders Date: Tue, 24 Jan 2006 21:35:07 +0000 (-0000) Subject: add -f flag to ln command to fix cygwin error per case 0000441 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c3d3d2ffe3d5fe1f65ed7ecb343bcf427bfc3be;p=buildroot.git add -f flag to ln command to fix cygwin error per case 0000441 --- diff --git a/package/sed/sed.mk b/package/sed/sed.mk index a4e7c81cf9..8b40a72076 100644 --- a/package/sed/sed.mk +++ b/package/sed/sed.mk @@ -72,7 +72,7 @@ use-sed-host-binary: if [ ! -e "$(HOST_SED_DIR)/$(SED_TARGET_BINARY)" ] ; then \ mkdir -p "$(HOST_SED_DIR)/bin"; \ rm -f "$(HOST_SED_DIR)/$(SED_TARGET_BINARY)"; \ - ln -s "$$SED" "$(HOST_SED_DIR)/$(SED_TARGET_BINARY)"; \ + ln -sf "$$SED" "$(HOST_SED_DIR)/$(SED_TARGET_BINARY)"; \ fi host-sed: $(HOST_SED_TARGET)