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

(-)fixlafiles.awk.orig (-6 / +6 lines)
Lines 6-27 Link Here
6
# Helper functions
6
# Helper functions
7
#
7
#
8
function printn(string) {
8
function printn(string) {
9
	system("echo -n \"" string "\"")
9
	printf("%s", string)
10
}
10
}
11
function einfo(string) {
11
function einfo(string) {
12
	system("echo -e \" \\e[32;01m*\\e[0m " string "\"")
12
	printf(" \033[32;01m*\033[0m %s\n", string)
13
}
13
}
14
function einfon(string) {
14
function einfon(string) {
15
	system("echo -ne \" \\e[32;01m*\\e[0m " string "\"")
15
	printf(" \033[32;01m*\033[0m %s", string)
16
}
16
}
17
function ewarn(string) {
17
function ewarn(string) {
18
	system("echo -e \" \\e[33;01m*\\e[0m " string "\"")
18
	printf(" \033[33;01m*\033[0m %s\n", string)
19
}
19
}
20
function ewarnn(string) {
20
function ewarnn(string) {
21
	system("echo -ne \" \\e[33;01m*\\e[0m " string "\"")
21
	printf(" \033[33;01m*\033[0m %s", string)
22
}
22
}
23
function eerror(string) {
23
function eerror(string) {
24
	system("echo -e \" \\e[31;01m*\\e[0m " string "\"")
24
	printf(" \033[31;01m*\033[0m %s\n", string)
25
}
25
}
26
26
27
#
27
#

Return to bug 210590