From 7ee37f3b1a07a4c7e824ddc1a1e03c356d9ea68c Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 17 Jan 2012 11:45:12 +0100 Subject: [PATCH] Regenerate manifest --- modules/baselayout-branding.ezmod | 1 + modules/openrc-branding.ezmod | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/baselayout-branding.ezmod b/modules/baselayout-branding.ezmod index d645602..4948999 100644 --- a/modules/baselayout-branding.ezmod +++ b/modules/baselayout-branding.ezmod @@ -9,6 +9,7 @@ ezsync_precommit() { printInfo "Enabling custom BaseLayout branding..." find ${PORTAGESDIR}/${PORTAGE_BUILD[0]}/sys-apps/baselayout -type f -name \*.ebuild | while read EBUILD; do sed -i "s/echo \"Gentoo Base System release/echo \"${CUSTOM_BRANDING}/g" ${EBUILD} || return 1 + run "ebuild ${EBUILD} manifest" || return 1 done return 0 } diff --git a/modules/openrc-branding.ezmod b/modules/openrc-branding.ezmod index 4415458..7b21264 100644 --- a/modules/openrc-branding.ezmod +++ b/modules/openrc-branding.ezmod @@ -9,6 +9,7 @@ ezsync_precommit() { printInfo "Enabling custom OpenRC branding..." find ${PORTAGESDIR}/${PORTAGE_BUILD[0]}/sys-apps/openrc -type f -name \*.ebuild | while read EBUILD; do sed -i "s/BRANDING=\"Gentoo \${brand}\"/BRANDING=\"${CUSTOM_BRANDING} \${brand}\"/g" ${EBUILD} || return 1 + run "ebuild ${EBUILD} manifest" || return 1 done return 0 }