You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2010/05/21 07:29:35 UTC

svn commit: r946878 - in /buildr/trunk: CHANGELOG lib/buildr/core/util.rb

Author: toulmean
Date: Fri May 21 05:29:35 2010
New Revision: 946878

URL: http://svn.apache.org/viewvc?rev=946878&view=rev
Log:
BUILDR-418 jruby exception: `ffi_libraries': no library specified

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/core/util.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=946878&r1=946877&r2=946878&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Fri May 21 05:29:35 2010
@@ -115,6 +115,7 @@
           (Pepijn Van Eeckhoudt)
 * Fixed:  BUILDR-399 invoke_with_call_chain does not restore call chain
           correctly (Pepijn Van Eeckhoudt)
+* Fixed:  BUILDR-418 jruby exception: `ffi_libraries': no library specified
 * Fixed:  BUILDR-442 Errors while running the specs with jruby 1.5
 * Fixed:  buildr test=all didn't run all tests as expected
 * Fixed:  Fail-fast if package.with() or include() called with nil values

Modified: buildr/trunk/lib/buildr/core/util.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/util.rb?rev=946878&r1=946877&r2=946878&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/util.rb (original)
+++ buildr/trunk/lib/buildr/core/util.rb Fri May 21 05:29:35 2010
@@ -407,7 +407,7 @@ if Buildr::Util.java_platform?
   module FileUtils
     extend FFI::Library
 
-    ffi_lib FFI::Platform::LIBC if Buildr::Util::win_os?
+    ffi_lib FFI::Platform::LIBC
 
     alias_method :__jruby_system__, :system
     attach_function :system, [:string], :int