From 0e686f1fb1e619ac5bf839079d84af8d6ae39efb Mon Sep 17 00:00:00 2001 From: Chris PeBenito Date: Mon, 13 Feb 2006 20:06:05 +0000 Subject: [PATCH] a few fixes --- refpolicy/Changelog | 4 ++++ refpolicy/Makefile | 22 +++++++++++++++------- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/refpolicy/Changelog b/refpolicy/Changelog index 35ef9b18..27c7a81b 100644 --- a/refpolicy/Changelog +++ b/refpolicy/Changelog @@ -1,3 +1,7 @@ +- Run python and shell directly to interpret scripts so policy + sources need not be executable. +- Add desc tag XML to booleans and tunables, and add summary + to param XML tag, to make future translations possible. - Remove unused lvm_vg_t. - Many interface renames to improve naming consistency. - Merge xdm into xserver. diff --git a/refpolicy/Makefile b/refpolicy/Makefile index 8ef4dca3..7e6228b5 100644 --- a/refpolicy/Makefile +++ b/refpolicy/Makefile @@ -41,7 +41,15 @@ GENHOMEDIRCON := $(SBINDIR)/genhomedircon XMLLINT := $(BINDIR)/xmllint SECHECK := $(BINDIR)/sechecker -CFLAGS := -Wall +# interpreters and aux tools +AWK ?= gawk +GREP ?= egrep +M4 ?= m4 +PYTHON ?= python +SED ?= sed +SH ?= sh + +CFLAGS += -Wall # policy source layout POLDIR := policy @@ -53,11 +61,11 @@ AVS := $(FLASKDIR)/access_vectors # policy building support tools SUPPORT := support -GENXML := $(SUPPORT)/segenxml.py -GENDOC := $(SUPPORT)/sedoctool.py -GENPERM := $(SUPPORT)/genclassperms.py +GENXML := $(PYTHON) $(SUPPORT)/segenxml.py +GENDOC := $(PYTHON) $(SUPPORT)/sedoctool.py +GENPERM := $(PYTHON) $(SUPPORT)/genclassperms.py FCSORT := $(SUPPORT)/fc_sort -SETTUN := $(SUPPORT)/set_tunables +SETTUN := $(SH) $(SUPPORT)/set_tunables # documentation paths DOCS = doc @@ -257,7 +265,7 @@ conf: $(MOD_CONF) $(BOOLEANS) $(GENERATED_TE) $(GENERATED_IF) $(GENERATED_FC) $(MOD_CONF) $(BOOLEANS): $(POLXML) @echo "Updating $(MOD_CONF) and $(BOOLEANS)" - $(verbose) cd $(DOCS) && ../$(GENDOC) -t ../$(BOOLEANS) -m ../$(MOD_CONF) -x ../$(POLXML) + $(verbose) $(GENDOC) -t $(BOOLEANS) -m $(MOD_CONF) -x $(POLXML) ######################################## # @@ -281,7 +289,7 @@ $(POLXML): $(DETECTED_MODS:.te=.if) $(foreach dir,$(ALL_LAYERS),$(dir)/$(LAYERXM html tmp/html: $(POLXML) @echo "Building html interface reference documentation in $(HTMLDIR)" @mkdir -p $(HTMLDIR) - $(verbose) cd $(DOCS) && ../$(GENDOC) -d ../$(HTMLDIR) -T ../$(DOCTEMPLATE) -x ../$(POLXML) + $(verbose) $(GENDOC) -d $(HTMLDIR) -T $(DOCTEMPLATE) -x $(POLXML) $(verbose) cp $(DOCTEMPLATE)/*.css $(HTMLDIR) @touch tmp/html -- 2.39.5