From 229afd99d07c74eed07b98d22e3d93154e7ba483 Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr." Date: Fri, 6 Dec 2013 13:37:03 -0800 Subject: [PATCH] Fix bug reported by Daniel Lertpratchya : MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On Dec 6, 2013, at 8:28 AM, Daniel Lertpratchya wrote: I recently ran the doxygen.warnings.report.sh script and I got the following error. I tried on a fresh copy of ns-3-dev and Brian also has the same problem. 'build' finished successfully (1.649s) Rebuilding doxygen docs with full errors...Done. mv: missing destination file operand after ‘doc/doxygen.log’ Try 'mv --help' for more information. No filters. cat: doc/doxygen.warnings.log: No such file or directory grep: doc/doxygen.warnings.log: No such file or directory cat: doc/doxygen.warnings.log: No such file or directory On Dec 6, 2013, at 10:36 AM, Daniel Lertpratchya wrote: I think doxygen.warnings.report.sh line 150 should be changed from $log to $LOG. That seems to fix the problem for me. --- doc/doxygen.warnings.report.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/doxygen.warnings.report.sh b/doc/doxygen.warnings.report.sh index 476e21918..2c9240338 100755 --- a/doc/doxygen.warnings.report.sh +++ b/doc/doxygen.warnings.report.sh @@ -147,7 +147,7 @@ else exit 1 fi - mv $DIR/doxygen.log $log + mv $DIR/doxygen.log $LOG fi