Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 705a3d5181a7
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af7eb1b4a9c9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 24, 2015

  1. fix build failure when RUBYGEMS_GEMDEPS is set to -

    Brett Neumeier committed Jan 24, 2015
    Copy the full SHA
    efd4478 View commit details
  2. Merge pull request #3294 from bneumeier/prevent-gemdeps-breakage

    fix build failure when RUBYGEMS_GEMDEPS is set to -
    brixen committed Jan 24, 2015
    Copy the full SHA
    af7eb1b View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 Rakefile
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -11,6 +11,12 @@ if ENV["CDPATH"]
ENV.delete("CDPATH")
end

# Wipe out RUBYGEMS_GEMDEPS, it causes the build to fail with
# "no such file to load -- tsort" when running rbx extconf.rb
if ENV["RUBYGEMS_GEMDEPS"]
ENV.delete("RUBYGEMS_GEMDEPS")
end

$trace ||= false
$VERBOSE = true
$verbose = Rake.application.options.trace || ARGV.delete("-v")