• R/O
  • SSH

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン647d34ba55ff3b61014970fc27348c6d88240d5d (tree)
日時2015-10-09 06:49:32
作者Ryan Kelly <rfkelly@mozi...>
コミッターRyan Kelly

ログメッセージ

Tweak build steps based on user feedback

変更サマリ

差分

diff -r 29ced4b373b2 -r 647d34ba55ff Makefile
--- a/Makefile Fri Sep 25 09:10:36 2015 -0700
+++ b/Makefile Fri Oct 09 08:49:32 2015 +1100
@@ -40,11 +40,16 @@
4040
4141 build:
4242 $(VIRTUALENV) --distribute --no-site-packages .
43+ $(INSTALL) pip
4344 $(INSTALL) Distribute
4445 $(INSTALL) MoPyTools
4546 $(INSTALL) Nose
4647 $(INSTALL) WebTest
48+ # Build these first because it seems to fail out on some people's
49+ # machines but then recover on subsequent build.
50+ $(INSTALL) -r dev-reqs.txt
4751 $(BUILDAPP) -c $(CHANNEL) $(PYPIOPTIONS) $(DEPS)
52+ ./bin/python setup.py develop
4853 # Pre-compile mako templates into the correct directories.
4954 for TMPL in `find . -name '*.mako'`; do ./bin/python -c "from mako.template import Template; Template(filename='$$TMPL', module_directory='`dirname $$TMPL`', uri='`basename $$TMPL`')"; done;
5055