add -E to python commands
This commit is contained in:
parent
9dfbd81493
commit
1a79cf0508
10
Makefile
10
Makefile
|
@ -93,17 +93,17 @@ endif
|
||||||
|
|
||||||
# policy building support tools
|
# policy building support tools
|
||||||
support := support
|
support := support
|
||||||
genxml := $(PYTHON) $(support)/segenxml.py
|
genxml := $(PYTHON) -E $(support)/segenxml.py
|
||||||
gendoc := $(PYTHON) $(support)/sedoctool.py
|
gendoc := $(PYTHON) -E $(support)/sedoctool.py
|
||||||
genperm := $(PYTHON) $(support)/genclassperms.py
|
genperm := $(PYTHON) -E $(support)/genclassperms.py
|
||||||
fcsort := $(tmpdir)/fc_sort
|
fcsort := $(tmpdir)/fc_sort
|
||||||
setbools := $(AWK) -f $(support)/set_bools_tuns.awk
|
setbools := $(AWK) -f $(support)/set_bools_tuns.awk
|
||||||
get_type_attr_decl := $(SED) -r -f $(support)/get_type_attr_decl.sed
|
get_type_attr_decl := $(SED) -r -f $(support)/get_type_attr_decl.sed
|
||||||
comment_move_decl := $(SED) -r -f $(support)/comment_move_decl.sed
|
comment_move_decl := $(SED) -r -f $(support)/comment_move_decl.sed
|
||||||
gennetfilter := $(PYTHON) $(support)/gennetfilter.py
|
gennetfilter := $(PYTHON) -E $(support)/gennetfilter.py
|
||||||
# use our own genhomedircon to make sure we have a known usable one,
|
# use our own genhomedircon to make sure we have a known usable one,
|
||||||
# so policycoreutils updates are not required (RHEL4)
|
# so policycoreutils updates are not required (RHEL4)
|
||||||
genhomedircon := $(PYTHON) $(support)/genhomedircon
|
genhomedircon := $(PYTHON) -E $(support)/genhomedircon
|
||||||
|
|
||||||
# documentation paths
|
# documentation paths
|
||||||
docs := doc
|
docs := doc
|
||||||
|
|
Loading…
Reference in New Issue