diff options
author | Marcin Nowakowski <marcin.nowakowski.000@gmail.com> | 2011-04-25 13:35:21 +0100 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-04-29 15:55:45 +0200 |
commit | f07726048d599acd6bac438e304645a78db753c0 (patch) | |
tree | 1d76654ce62045f8a8960900189d4cad5747e8dd /scripts/mkcompile_h | |
parent | d8ecc5cd8e227bc318513b5306ae88a474b8886d (diff) | |
download | kernel_samsung_aries-f07726048d599acd6bac438e304645a78db753c0.zip kernel_samsung_aries-f07726048d599acd6bac438e304645a78db753c0.tar.gz kernel_samsung_aries-f07726048d599acd6bac438e304645a78db753c0.tar.bz2 |
Fix handling of backlash character in LINUX_COMPILE_BY name
When using a domain login, `whoami` returns the login in
user\domain format. This leads to either warnings on unrecognised
escape sequences or escaped characters being generated for the user.
This patch ensures that any backslash is escaped to a double-backslash
to make sure the name is preserved correctly. This patch does not
enforce escaping on the KBUILD_BUILD_USER variable, as this is something
the user has control of and can escape if required.
Signed-off-by: Marcin Nowakowski <marcin.nowakowski.000@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/mkcompile_h')
-rwxr-xr-x | scripts/mkcompile_h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index 7ad6bf7..f221ddf 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h @@ -43,7 +43,7 @@ else TIMESTAMP=$KBUILD_BUILD_TIMESTAMP fi if test -z "$KBUILD_BUILD_USER"; then - LINUX_COMPILE_BY=`whoami` + LINUX_COMPILE_BY=$(whoami | sed 's/\\/\\\\/') else LINUX_COMPILE_BY=$KBUILD_BUILD_USER fi |