mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Auto merge of #6411 - metajack:fix-script-out-dir, r=glennw
Don't generate pyc files. This eliminates the last bit of script crate generating in-tree files. This now allows cargo target dir sharing to fully work. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6411) <!-- Reviewable:end -->
This commit is contained in:
commit
5dc546b4cf
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ $(CACHE_DIR)/.done:
|
|||
touch $@
|
||||
|
||||
$(OUT_DIR)/ParserResults.pkl: $(globalgen_dependencies) $(WEBIDLS)
|
||||
$(PYTHON) $(BINDINGS_SRC)/pythonpath.py \
|
||||
$(PYTHON) -B $(BINDINGS_SRC)/pythonpath.py \
|
||||
-I$(BINDINGS_SRC)/parser -I$(BINDINGS_SRC)/ply \
|
||||
-D$(OUT_DIR) \
|
||||
$(BINDINGS_SRC)/GlobalGen.py $(BINDINGS_SRC)/Bindings.conf . \
|
||||
|
@ -37,7 +37,7 @@ $(OUT_DIR)/ParserResults.pkl: $(globalgen_dependencies) $(WEBIDLS)
|
|||
|
||||
$(AUTOGEN_SRC): $(OUT_DIR)/Bindings/%Binding.rs: $(bindinggen_dependencies) \
|
||||
$(addprefix $(WEBIDLS_SRC)/,%.webidl)
|
||||
$(PYTHON) $(BINDINGS_SRC)/pythonpath.py \
|
||||
$(PYTHON) -B $(BINDINGS_SRC)/pythonpath.py \
|
||||
-I$(BINDINGS_SRC)/parser -I$(BINDINGS_SRC)/ply \
|
||||
-D$(OUT_DIR) \
|
||||
$(BINDINGS_SRC)/BindingGen.py \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue