summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-07 15:00:28 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-07 15:00:28 +0000
commit99e9bee1fe5090927a111ff66840c964fddb694e (patch)
tree02bd3c7aee6254c28bcce41005c180cbee79bac1
parent7f2ae1868adc57ac909f95776e06b6d6431e1c39 (diff)
downloadATCD-99e9bee1fe5090927a111ff66840c964fddb694e.tar.gz
removed the -f option to ln for MVSLIB, as well
-rw-r--r--include/makeinclude/rules.local.GNU2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/makeinclude/rules.local.GNU b/include/makeinclude/rules.local.GNU
index d43910b2547..599a4f2ff1f 100644
--- a/include/makeinclude/rules.local.GNU
+++ b/include/makeinclude/rules.local.GNU
@@ -140,7 +140,7 @@ ifdef MVSLIB
echo "$(@F:.$(SOEXT)=.x) already installed" ; \
else \
echo "Installing $(@F:.$(SOEXT)=.x) -> $(@D)" ; \
- $(RM) $(@); ln -s -f $(shell pwd)/$(@F:.$(SOEXT)=.x) $(@:.$(SOEXT)=.x) ; \
+ $(RM) $(@); ln -s $(shell pwd)/$(@F:.$(SOEXT)=.x) $(@:.$(SOEXT)=.x) ; \
fi \
fi
endif