[ruby-oci8-commit] [386] trunk/ruby-oci8: * Makefile: fix wrong dependencies in Makefile when running
nobody at rubyforge.org
nobody at rubyforge.org
Fri Apr 23 08:06:01 EDT 2010
Revision: 386
Author: kubo
Date: 2010-04-23 08:06:00 -0400 (Fri, 23 Apr 2010)
Log Message:
-----------
* Makefile: fix wrong dependencies in Makefile when running
'make -jNNN (where NNN >= 2)'
(contributed by Alyano Alyanos. See bug #28129 on rubyforge.)
Modified Paths:
--------------
trunk/ruby-oci8/ChangeLog
trunk/ruby-oci8/Makefile
Modified: trunk/ruby-oci8/ChangeLog
===================================================================
--- trunk/ruby-oci8/ChangeLog 2010-04-13 14:02:35 UTC (rev 385)
+++ trunk/ruby-oci8/ChangeLog 2010-04-23 12:06:00 UTC (rev 386)
@@ -1,3 +1,8 @@
+2010-04-23 KUBO Takehiro <kubo at jiubao.org>
+ * Makefile: fix wrong dependencies in Makefile when running
+ 'make -jNNN (where NNN >= 2)'
+ (contributed by Alyano Alyanos. See bug #28129 on rubyforge.)
+
2010-03-07 KUBO Takehiro <kubo at jiubao.org>
* ext/oci8/ocinumber.c: fix to compile on HP-UX.
Duplicate const qualifiers prevented HP-UX cc from compiling.
Modified: trunk/ruby-oci8/Makefile
===================================================================
--- trunk/ruby-oci8/Makefile 2010-04-13 14:02:35 UTC (rev 385)
+++ trunk/ruby-oci8/Makefile 2010-04-23 12:06:00 UTC (rev 386)
@@ -4,12 +4,10 @@
all: build
-build: config.save setup
-
config.save: lib/oci8.rb.in
$(RUBY) setup.rb config
-setup:
+build: config.save
$(RUBY) setup.rb setup
check: build
More information about the ruby-oci8-commit
mailing list