[cairo-commit] rcairo ChangeLog,1.37,1.38 setup.rb,1.3,1.4
Kouhei Sutou
commit at pdx.freedesktop.org
Fri Oct 7 19:42:03 PDT 2005
Committed by: kou
Update of /cvs/cairo/rcairo
In directory gabe:/tmp/cvs-serv7583
Modified Files:
ChangeLog setup.rb
Log Message:
* setup.rb: Added workaround for an error on Win32 platform.
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/rcairo/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- ChangeLog 7 Oct 2005 15:11:26 -0000 1.37
+++ ChangeLog 8 Oct 2005 02:42:01 -0000 1.38
@@ -1,5 +1,7 @@
2005-10-08 Kouhei Sutou <kou at cozmixng.org>
+ * setup.rb: Added workaround for an error on Win32 platform.
+
* packages/cairo/ext/rb_cairo_font_options.c: Implemented
cairo_font_options_t.
* packages/cairo/ext/rb_cairo_surface.c: ditto.
Index: setup.rb
===================================================================
RCS file: /cvs/cairo/rcairo/setup.rb,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- setup.rb 30 Sep 2005 15:46:15 -0000 1.3
+++ setup.rb 8 Oct 2005 02:42:01 -0000 1.4
@@ -653,7 +653,7 @@
def command(*args)
$stderr.puts args.join(' ') if verbose?
- system(*args) or raise RuntimeError,
+ system(args.join(' ')) or raise RuntimeError,
"system(#{args.map{|a| a.inspect }.join(' ')}) failed"
end
More information about the cairo-commit
mailing list