summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-26 11:19:22 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-26 11:19:22 +0000
commit4685b6d9c848b6627323e4356c95a8c965d94c50 (patch)
tree1359cf684c541231554cf828d691dae66b38b8dd
parent4f7d401d51ff408e070fd2b5a389224da9cb56d5 (diff)
* Makefile.in (DOXYGEN): Define a missing variable DOXYGEN. Build
has been failing when doxygen(1) is found by configure but the variable is not defined by the system and make(1) does not allow an empty command. ("@$(DOXYGEN)" was the cause) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.in1
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f2698fc66e..221bd7e068 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Mar 26 19:55:41 2010 Akinori MUSHA <knu@iDaemons.org>
+
+ * Makefile.in (DOXYGEN): Define a missing variable DOXYGEN. Build
+ has been failing when doxygen(1) is found by configure but the
+ variable is not defined by the system and make(1) does not allow
+ an empty command. ("@$(DOXYGEN)" was the cause)
+
Fri Mar 26 19:28:03 2010 Shugo Maeda <shugo@ruby-lang.org>
* test/ruby/test_hash.rb (test_recursive_key): recursive keys are
diff --git a/Makefile.in b/Makefile.in
index bec0327828..c87115dcbd 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -18,6 +18,7 @@ AUTOCONF = autoconf
MKFILES = @MAKEFILES@
BASERUBY = @BASERUBY@
TEST_RUNNABLE = @TEST_RUNNABLE@
+DOXYGEN = @DOXYGEN@
prefix = @prefix@
exec_prefix = @exec_prefix@