add -f flag to ln command to fix cygwin error per case 0000441

This commit is contained in:
David Anders 2006-01-24 21:35:07 +00:00
parent 63c97755b4
commit 1c3d3d2ffe
1 changed files with 1 additions and 1 deletions

View File

@ -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)