Changeset 285

Show
Ignore:
Timestamp:
07/07/06 00:17:31 (4 years ago)
Author:
vasi
Message:

fix autogen

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • gtk-osx/trunk/scripts/gtk-osx/build/package.rb

    r284 r285  
    143143         
    144144        def configure 
    145                 script = nil 
    146                 %w[configure autogen.sh].each do |file| 
    147                         script = file if File.exists?(file) 
    148                 end 
     145                script = %w[configure autogen.sh].select { |f| File.exist?(f) }.first 
    149146                raise "Can't figure out how to configure!" unless script 
    150147