Skip to content

Commit

Permalink
Disable deps tracking.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Weaver committed Dec 1, 2009
1 parent 9679fab commit 920f260
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

v0.17.7. Disable dependency tracking.

v0.17.6. Again.

v0.17.5. Fuss with archflags.
Expand Down
4 changes: 2 additions & 2 deletions ext/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
raise "'#{cmd}' failed" unless system(cmd)

Dir.chdir(BUNDLE_PATH) do
puts(cmd = "env CFLAGS='-fPIC #{$CFLAGS}' LDFLAGS='-fPIC #{$LDFLAGS}' ./configure --prefix=#{HERE} --without-memcached --disable-shared --disable-utils #{$EXTRA_CONF} 2>&1")
puts(cmd = "env CFLAGS='-fPIC #{$CFLAGS}' LDFLAGS='-fPIC #{$LDFLAGS}' ./configure --prefix=#{HERE} --without-memcached --disable-shared --disable-utils --disable-dependency-tracking #{$EXTRA_CONF} 2>&1")

raise "'#{cmd}' failed" unless system(cmd)
puts(cmd = "make CXXFLAGS=#{$CXXFLAGS} || true 2>&1")
puts(cmd = "make CXXFLAGS='#{$CXXFLAGS}' || true 2>&1")
raise "'#{cmd}' failed" unless system(cmd)
puts(cmd = "make install || true 2>&1")
raise "'#{cmd}' failed" unless system(cmd)
Expand Down

0 comments on commit 920f260

Please sign in to comment.