]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* lib/am/texibuild.am (?GENERIC_INFO?%SOURCE_SUFFIX%%DEST_SUFFIX%):
authorAlexandre Duret-Lutz <adl@gnu.org>
Fri, 10 Jun 2005 22:10:39 +0000 (22:10 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Fri, 10 Jun 2005 22:10:39 +0000 (22:10 +0000)
Fix redirections in previous patch.

ChangeLog
lib/am/texibuild.am

index e8b5a120a86c0a03f4117f92bf381c2dbcfdbd19..78951debef8a8b0afb516ce2d4d26357b8693c34 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-11  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * lib/am/texibuild.am (?GENERIC_INFO?%SOURCE_SUFFIX%%DEST_SUFFIX%):
+       Fix redirections in previous patch.
+
 2005-06-08  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * lib/am/texibuild.am (?GENERIC_INFO?%SOURCE_SUFFIX%%DEST_SUFFIX%):
index b04b188797e66b90ced4b992e60e4aa2f2b24b5d..ffa338e465e19ca423cf7fc338e7e55c6c023f03 100644 (file)
@@ -39,7 +39,7 @@
        rm -rf $$backupdir && mkdir $$backupdir && \
 ## If makeinfo is not installed we must not backup the files so
 ##`missing' can do its job and touch $@ if it exists.
-       if ($(MAKEINFO) --version >/dev/null 2>&1); then \
+       if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
          for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
            if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
          done; \