diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-19 10:22:21 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-19 10:22:21 +0000 |
commit | 3380f39f753813e4946c56cf82e644b82884fd28 (patch) | |
tree | af85bb560d6b443bc7d2efc4ef97dd682dc783d6 /include | |
parent | 2b3cb529819d372fe54e20fda6859672a9cf5a0d (diff) | |
download | ATCD-3380f39f753813e4946c56cf82e644b82884fd28.tar.gz |
*** empty log message ***
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/rules.local.GNU | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/makeinclude/rules.local.GNU b/include/makeinclude/rules.local.GNU index 4d8d6cbced8..f81abdc50cb 100644 --- a/include/makeinclude/rules.local.GNU +++ b/include/makeinclude/rules.local.GNU @@ -125,14 +125,14 @@ $(INSMAN)/man7/% \ $(INSMAN)/man8/% \ $(INSMAN)/manl/% \ $(INSMAN)/mann/% : - if test $(shell pwd) != $(@D) ; then \ - if test -s $@ ; then \ - echo "$(@F) already installed" ; \ - else \ - echo "Installing $(@F) -> $(@D)" ; \ - ln -s $(shell pwd)/$(@F) $@ ; \ - fi ; \ - fi + @if test $(shell pwd) != $(@D) ; then \ + if test -s $@ ; then \ + echo "$(@F) already installed" ; \ + else \ + echo "Installing $(@F) -> $(@D)" ; \ + ln -s $(shell pwd)/$(@F) $@ ; \ + fi ; \ + fi ifdef MVSLIB #special for MVS in order to use the .x files @if test -w $(@D) ; then \ |