Skip to content

Commit

Permalink
Correctly require "tmpdir" in all places where it is used
Browse files Browse the repository at this point in the history
  • Loading branch information
jhs committed Aug 22, 2010
1 parent 9d68642 commit 4ae0c1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tasks/couchdb.rake
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Building CouchDB

require 'uri'
require 'tmpdir'

namespace :couchdb do

Expand Down
2 changes: 2 additions & 0 deletions tasks/icu.rake
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# libicu

require 'tmpdir'

namespace :icu do

desc 'Build libicu'
Expand Down
1 change: 1 addition & 0 deletions tasks/lib.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Miscellaneous utilities

require 'find'
require 'tmpdir'

require File.dirname(__FILE__) + '/places'

Expand Down
1 change: 1 addition & 0 deletions tasks/toolchain.rake
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Build toolchain

require 'tmpdir'
require 'fileutils'

namespace :toolchain do
Expand Down

0 comments on commit 4ae0c1d

Please sign in to comment.