Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 224507
Collapse All | Expand All

(-)trunk/libs/core.bash.in (-5 lines)
Lines 109-119 Link Here
109
    done
109
    done
110
}
110
}
111
111
112
# make eval not work, because it's evil
113
eval() {
114
    die "Don't use eval. Find another way."
115
}
116
117
# GNU sed wrapper (real path to GNU sed determined by configure)
112
# GNU sed wrapper (real path to GNU sed determined by configure)
118
sed() {
113
sed() {
119
    @SED@ "$@"
114
    @SED@ "$@"
(-)trunk/README (-1 / +1 lines)
Lines 25-31 Link Here
25
* For the main source, indent is four spaces, no tabs, text width of 80.
25
* For the main source, indent is four spaces, no tabs, text width of 80.
26
* For .eselect files, the same indenting rules apply as for ebuilds.
26
* For .eselect files, the same indenting rules apply as for ebuilds.
27
* Public functions don't get the ``ec_`` prefix, private functions do.
27
* Public functions don't get the ``ec_`` prefix, private functions do.
28
* eval is evil, so we disabled it.
28
* eval is evil, so don't use it.
29
* Absolute paths to executables are not portable, so don't use them.
29
* Absolute paths to executables are not portable, so don't use them.
30
30
31
 vim: set tw=78 ft=glep :
31
 vim: set tw=78 ft=glep :

Return to bug 224507