diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-07 15:00:28 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-07 15:00:28 +0000 |
commit | 99e9bee1fe5090927a111ff66840c964fddb694e (patch) | |
tree | 02bd3c7aee6254c28bcce41005c180cbee79bac1 /include | |
parent | 7f2ae1868adc57ac909f95776e06b6d6431e1c39 (diff) | |
download | ATCD-99e9bee1fe5090927a111ff66840c964fddb694e.tar.gz |
removed the -f option to ln for MVSLIB, as well
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/rules.local.GNU | 2 |
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 |