change option name

This commit is contained in:
belliash 2012-01-17 00:12:36 +01:00
부모 7480ea769b
커밋 9b9606fca7
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -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"

파일 보기

@ -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
}