Okay, here is my experiment!

Broken commit on its own...

  253  mkdir ~/7ac7303
  254  cd ~/7ac7303
  255  git clone --depth 30 https://github.com/OpenSmalltalk/opensmalltalk-vm.git
  256  cd opensmalltalk-vm/
  257  git checkout 7ac7303
  258  grep url third-party/freetype2.spec
==>freetype2_spec_download_url:=http://ftp.igh.cnrs.fr/pub/nongnu/freetype/freetype-2.9.1.tar.gz
  259  cd build.win32x86/pharo.cog.spur
  260  ./mvm -d
  281  history
FAILURE!

Now in another directory, first the good commit then broken commit on top of that.

  270  mkdir ~/b83f9ecd
  271  cd ~/b83f9ecd
  272  git clone --depth 30 https://github.com/OpenSmalltalk/opensmalltalk-vm.git
  273  cd opensmalltalk-vm/
  274  git checkout b83f9ecd
  275  grep url third-party/freetype2.spec
==>freetype2_spec_download_url:=http://ftp.igh.cnrs.fr/pub/nongnu/freetype/freetype-2.6.5.tar.gz
  276  cd build.win32x86/pharo.cog.spur  
  277  ./mvm -d
SUCCESS AS EXPECTED

  278  git checkout 7ac7303
  279  grep url ../../third-party/freetype2.spec
==>freetype2_spec_download_url:=http://ftp.igh.cnrs.fr/pub/nongnu/freetype/freetype-2.9.1.tar.gz
  280  ./mvm -d
SUCCESS!!!
  281  history


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.