diff options
author | Brian Jackson <iggy@gentoo.org> | 2004-01-16 22:31:07 +0000 |
---|---|---|
committer | Brian Jackson <iggy@gentoo.org> | 2004-01-16 22:31:07 +0000 |
commit | 1cc2798ad122d30153653074ed638b0a7c34adaa (patch) | |
tree | 0077aa4a8b0753089ee39e138cda4e8320045707 /eclass | |
parent | manifest fix (Manifest recommit) (diff) | |
download | gentoo-2-1cc2798ad122d30153653074ed638b0a7c34adaa.tar.gz gentoo-2-1cc2798ad122d30153653074ed638b0a7c34adaa.tar.bz2 gentoo-2-1cc2798ad122d30153653074ed638b0a7c34adaa.zip |
clean up K_EXTRAEWARN, and add it to the documented vars at the top
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 12ea3bc60813..8839f5a8076e 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -16,6 +16,7 @@ # K_NOSETEXTRAVERSION - if this is set then EXTRAVERSION will not be automatically set within the kernel Makefile # K_NOUSENAME - if this is set then EXTRAVERSION will not include the first part of ${PN} in EXTRAVERSION # K_EXTRAEINFO - this is a new-line seperated list of einfo displays in postinst and can be used to carry additional postinst messages +# K_EXTRAEWARN - same as K_EXTRAEINFO except ewarn's instead of einfo's # UNIPATCH_LIST - space delimetered list of patches to be applied to the kernel # UNIPATCH_DOCS - space delimemeted list of docs to be installed to the doc dir @@ -207,6 +208,8 @@ postinst_sources() { do einfo "${ELINE}" done + + echo fi # if K_EXTRAEWARN is set then lets display it now @@ -215,8 +218,10 @@ postinst_sources() { echo ${K_EXTRAEWARN} | fmt | while read -s ELINE do - einfo "${ELINE}" + ewarn "${ELINE}" done + + echo fi } |