fix system.users now that the gen_user macro is in support

This commit is contained in:
Chris PeBenito 2005-09-22 14:31:30 +00:00
parent 08c5c972cf
commit 1fb83a764b

View File

@ -266,7 +266,7 @@ html: $(POLXML)
# #
# Runtime binary policy patching of users # Runtime binary policy patching of users
# #
$(USERPATH)/system.users: $(USER_FILES) tmp/generated_definitions.conf $(USERPATH)/system.users: $(M4SUPPORT) tmp/generated_definitions.conf $(USER_FILES)
@mkdir -p $(USERPATH) @mkdir -p $(USERPATH)
@echo "Installing system.users" @echo "Installing system.users"
@echo "# " > tmp/system.users @echo "# " > tmp/system.users
@ -274,7 +274,7 @@ $(USERPATH)/system.users: $(USER_FILES) tmp/generated_definitions.conf
@echo "# This file is replaced on reinstalls of this policy." >> tmp/system.users @echo "# This file is replaced on reinstalls of this policy." >> tmp/system.users
@echo "# Please edit local.users to make local changes." >> tmp/system.users @echo "# Please edit local.users to make local changes." >> tmp/system.users
@echo "#" >> tmp/system.users @echo "#" >> tmp/system.users
$(QUIET) m4 -D self_contained_policy $(M4PARAM) tmp/generated_definitions.conf $(USER_FILES) | \ $(QUIET) m4 -D self_contained_policy $(M4PARAM) $^ | \
egrep -v "^[[:space:]]*($$|#)" >> tmp/system.users egrep -v "^[[:space:]]*($$|#)" >> tmp/system.users
$(QUIET) install -m 644 tmp/system.users $@ $(QUIET) install -m 644 tmp/system.users $@