diff options
author | Dylan Baker <[email protected]> | 2016-05-31 13:31:44 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-05-31 15:09:06 -0700 |
commit | 604010a7edbe03ff65720cab8dddba1d0ca1571b (patch) | |
tree | a1be01b77833de51d5b8b2eda45b4e03d4b3d028 /src/intel | |
parent | ab31817fedff4634c7daeb3eb04fac49d4625c54 (diff) |
Don't use python 3
Now there are not files that require python 3, so for now just remove
the python 3 dependency and use python 2. I think the right plan is to
just get all of the python ready for python 3, and then use whatever
python is available.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
cc: 12.0 <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/genxml/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/genxml/Makefile.am b/src/intel/genxml/Makefile.am index c393ebe3163..d6c1c5b5124 100644 --- a/src/intel/genxml/Makefile.am +++ b/src/intel/genxml/Makefile.am @@ -23,14 +23,14 @@ include Makefile.sources BUILT_SOURCES = $(GENXML_GENERATED_FILES) -PYTHON3_GEN = $(AM_V_GEN)$(PYTHON3) $(PYTHON_FLAGS) +PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) SUFFIXES = _pack.h .xml $(BUILT_SOURCES): gen_pack_header.py .xml_pack.h: - $(PYTHON3_GEN) $(srcdir)/gen_pack_header.py $< > $@ + $(PYTHON_GEN) $(srcdir)/gen_pack_header.py $< > $@ CLEANFILES = $(BUILT_SOURCES) |