change option name

This commit is contained in:
belliash 2012-01-17 00:12:36 +01:00
parent 7480ea769b
commit 9b9606fca7
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
# This directive defines the new branding for OpenRC that will be set by openrc-branding
# module. Usually this should be a distribution name.
CUSTOM_OPENRC_BRAND="MyOwn"
CUSTOM_BRANDING="MyOwn"

View File

@ -8,7 +8,7 @@ EZMOD_VERSION="1.0"
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_OPENRC_BRAND} \${brand}\"/g" ${EBUILD} || return 1
sed -i "s/BRANDING=\"Gentoo \${brand}\"/BRANDING=\"${CUSTOM_BRANDING} \${brand}\"/g" ${EBUILD} || return 1
done
return 0
}