diff options
author | Tom Tromey <tromey@redhat.com> | 1997-03-28 03:27:50 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-03-28 03:27:50 +0000 |
commit | 0a4d56b73319f069fa382f615c186620cdd2c319 (patch) | |
tree | 31fa85d14341b6a84217ac5015ef81c9dbbb0646 /lib/am/texi-vers.am | |
parent | 97cadf2638035626ba5ea1e86944886edb8ebdc3 (diff) | |
download | automake-0a4d56b73319f069fa382f615c186620cdd2c319.tar.gz |
fix in texinfo version code
Diffstat (limited to 'lib/am/texi-vers.am')
-rw-r--r-- | lib/am/texi-vers.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/am/texi-vers.am b/lib/am/texi-vers.am index 6f0c18efa..42e33ead9 100644 --- a/lib/am/texi-vers.am +++ b/lib/am/texi-vers.am @@ -28,7 +28,7 @@ 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. - @cmp -s @VTI@.tmp $(srcdir)/stamp-@VTI@ + @cmp -s @VTI@.tmp $(srcdir)/stamp-@VTI@ \ || (echo "Updating $(srcdir)/stamp-@VTI@"; \ cp @VTI@.tmp $(srcdir)/stamp-@VTI@) @rm -f @VTI@.tmp |