From: "nobu (Nobuyoshi Nakada)" Date: 2013-02-22T12:55:08+09:00 Subject: [ruby-core:52680] [ruby-trunk - Bug #7910][Rejected] ruby untared with --touch requires --with-baseruby Issue #7910 has been updated by nobu (Nobuyoshi Nakada). Status changed from Open to Rejected What's the motivation to touch? Tarballs include files generated at packaging, so there are some dependencies. ---------------------------------------- Bug #7910: ruby untared with --touch requires --with-baseruby https://bugs.ruby-lang.org/issues/7910#change-36767 Author: mpapis (Michal Papis) Status: Rejected Priority: Normal Assignee: Category: Target version: ruby -v: 1.9.3-p385 So this flow works (logs: https://gist.github.com/anonymous/0251d407026fa3530f17): tar xjf ~/.rvm/archives/ruby-1.9.3-p385.tar.bz2 --strip-components=1 autoreconf 2>&1 | tee /tmp/1.9.3-autoreconf.log ./configure --prefix ~/tmp/ruby-bin --disable-install-doc --enable-shared 2>&1 | tee /tmp/1.9.3-configure.log make -j 10 2>&1 | tee /tmp/1.9.3-make.log make install 2>&1 | tee /tmp/1.9.3-make-install.log And this one not(logs: https://gist.github.com/anonymous/c382657cc12f9c2779b6): tar xjf ~/.rvm/archives/ruby-1.9.3-p385.tar.bz2 --strip-components=1 --touch autoreconf 2>&1 | tee /tmp/1.9.3-autoreconf.log ./configure --prefix ~/tmp/ruby-bin --disable-install-doc 2>&1 | tee /tmp/1.9.3-configure.log make -j 10 2>&1 | tee /tmp/1.9.3-make.log -- http://bugs.ruby-lang.org/