[前][次][番号順一覧][スレッド一覧]

ruby-changes:15183

From: knu <ko1@a...>
Date: Fri, 26 Mar 2010 20:19:41 +0900 (JST)
Subject: [ruby-changes:15183] Ruby:r27063 (trunk): * Makefile.in (DOXYGEN): Define a missing variable DOXYGEN. Build

knu	2010-03-26 20:19:22 +0900 (Fri, 26 Mar 2010)

  New Revision: 27063

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27063

  Log:
    * 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)

  Modified files:
    trunk/ChangeLog
    trunk/Makefile.in

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 27062)
+++ ChangeLog	(revision 27063)
@@ -1,3 +1,10 @@
+Fri Mar 26 19:55:41 2010  Akinori MUSHA  <knu@i...>
+
+	* 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@r...>
 
 	* test/ruby/test_hash.rb (test_recursive_key): recursive keys are
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 27062)
+++ Makefile.in	(revision 27063)
@@ -18,6 +18,7 @@
 MKFILES = @MAKEFILES@
 BASERUBY = @BASERUBY@
 TEST_RUNNABLE = @TEST_RUNNABLE@
+DOXYGEN = @DOXYGEN@
 
 prefix = @prefix@
 exec_prefix = @exec_prefix@

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]