diff options
author | Tom Tromey <tromey@redhat.com> | 1997-02-25 03:39:56 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-02-25 03:39:56 +0000 |
commit | 3893dee89bceec9e88b586ddb108edf14dee0b58 (patch) | |
tree | 404f90d74151687fff98b5bf7c25f3d4a1c28138 /lib/am/texi-vers.am | |
parent | bb28e1c328082dd3c276da6b3e6fba935243e152 (diff) | |
download | automake-3893dee89bceec9e88b586ddb108edf14dee0b58.tar.gz |
bug fix
Diffstat (limited to 'lib/am/texi-vers.am')
-rw-r--r-- | lib/am/texi-vers.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/am/texi-vers.am b/lib/am/texi-vers.am index 313220480..f820131c7 100644 --- a/lib/am/texi-vers.am +++ b/lib/am/texi-vers.am @@ -28,11 +28,9 @@ stamp-@VTI@: @TEXI@ $(top_srcdir)/configure.in ## Use cp and rm here because some older "mv"s can't move across ## filesystems. Furthermore, GNU "mv" in the AmigaDOS environment ## can't handle this. - if cmp -s @VTI@.tmp $(srcdir)/@VTEXI@; then \ - rm -f @VTI@.tmp; \ - else \ - cp @VTI@.tmp $(srcdir)/stamp-@VTI@; \ - fi + cmp -s @VTI@.tmp $(srcdir)/@VTEXI@ \ + || cp @VTI@.tmp $(srcdir)/stamp-@VTI@ + rm -f @VTI@.tmp mostlyclean-@VTI@: rm -f @VTI@.tmp |