diff options
author | 2013-07-25 09:49:04 +0200 | |
---|---|---|
committer | 2013-07-25 09:49:04 +0200 | |
commit | c71bffa07227ab76732ec9afff4a926f0c55a64a (patch) | |
tree | c27b622ea88bc2fca62b9d414aa41ec29baaa503 /ebuild-writing/functions/pkg_pretend | |
parent | Update reference to app-emacs/ebuild-mode after package move. (diff) | |
download | devmanual-c71bffa07227ab76732ec9afff4a926f0c55a64a.tar.gz devmanual-c71bffa07227ab76732ec9afff4a926f0c55a64a.tar.bz2 devmanual-c71bffa07227ab76732ec9afff4a926f0c55a64a.zip |
pkg_pretend sample used deprecated error message format
Since linux-info.eclass's revision 1.35, which fixed bug #113142, ERROR_* is the preferred format for error message variable names.
Diffstat (limited to 'ebuild-writing/functions/pkg_pretend')
-rw-r--r-- | ebuild-writing/functions/pkg_pretend/text.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ebuild-writing/functions/pkg_pretend/text.xml b/ebuild-writing/functions/pkg_pretend/text.xml index 9f051f7..0279145 100644 --- a/ebuild-writing/functions/pkg_pretend/text.xml +++ b/ebuild-writing/functions/pkg_pretend/text.xml @@ -53,7 +53,7 @@ pkg_pretend() { if [[ -e "${ROOT}"/usr/src/linux/.config ]] ; then if kernel_is lt 2 6 30 ; then CONFIG_CHECK="FUSE_FS" - FUSE_FS_ERROR="this is an unrealistic testcase..." + ERROR_FUSE_FS="this is an unrealistic testcase..." check_extra_config fi fi |