From 23a77d70e87f2414b51177aab9a50fbe82d964d2 Mon Sep 17 00:00:00 2001 From: Jamie Strandboge Date: Tue, 10 Aug 2010 16:42:00 -0500 Subject: [PATCH] adjust profiles/Makefile for abstractions/ubuntu-browsers.d --- profiles/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/profiles/Makefile b/profiles/Makefile index 2dd023754..325f1c3c8 100644 --- a/profiles/Makefile +++ b/profiles/Makefile @@ -39,6 +39,7 @@ EXTRAS_SOURCE=./apparmor/profiles/extras/ SUBDIRS_MUST_BE_SKIPPED=${PROFILES_SOURCE}/abstractions ${PROFILES_SOURCE}/apache2.d ${PROFILES_SOURCE}/program-chunks ${PROFILES_SOURCE}/tunables ${PROFILES_SOURCE}/local PROFILES_TO_COPY=$(filter-out ${SUBDIRS_MUST_BE_SKIPPED}, $(wildcard ${PROFILES_SOURCE}/*)) TUNABLES_TO_COPY=$(filter-out ${PROFILES_SOURCE}/tunables/home.d, $(wildcard ${PROFILES_SOURCE}/tunables/*)) +ABSTRACTIONS_TO_COPY=$(filter-out ${PROFILES_SOURCE}/abstractions/ubuntu-browsers.d, $(wildcard ${PROFILES_SOURCE}/abstractions/*)) local: for profile in ${PROFILES_TO_COPY}; do \ @@ -56,7 +57,9 @@ install: local ${PROFILES_DEST}/tunables/home.d \ ${PROFILES_DEST}/local install -m 644 ${PROFILES_TO_COPY} ${PROFILES_DEST} - install -m 644 ${PROFILES_SOURCE}/abstractions/* ${PROFILES_DEST}/abstractions + install -m 644 ${ABSTRACTIONS_TO_COPY} ${PROFILES_DEST}/abstractions + install -m 755 -d ${PROFILES_DEST}/abstractions/ubuntu-browsers.d + install -m 644 ${PROFILES_SOURCE}/abstractions/ubuntu-browsers.d/* ${PROFILES_DEST}/abstractions/ubuntu-browsers.d install -m 644 ${PROFILES_SOURCE}/apache2.d/* ${PROFILES_DEST}/apache2.d install -m 644 ${PROFILES_SOURCE}/program-chunks/* ${PROFILES_DEST}/program-chunks install -m 644 ${TUNABLES_TO_COPY} ${PROFILES_DEST}/tunables