Last modified: 2014-09-25 06:52:19 UTC
When trying to compile an HHVM extension in Vagrant, it fails because it tries to look in /root/hhvm/joe/hhvm. It's getting this path from /usr/lib/hphp/hphpize/hphpize.cmake.
*** This bug has been marked as a duplicate of bug 68944 ***
As described on bug 68944, I wrote a workaround for that issue https://gerrit.wikimedia.org/r/#/c/150895/ Basically run: hphpize sed -i 's%;/root/hhvm/joe/hhvm%%' CMakeLists.txt cmake . make The issue has been fixed upstream https://github.com/facebook/hhvm/pull/3323 ( da0635499 ) and is included in HHVM 3.3.0: facebook/hhvm$ git tag --contains da0635499 HHVM-3.3.0 $
Confirmed that the new packages fix the issue.