diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-28 07:23:21 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-28 07:23:21 +0200 |
commit | 63f72b4fcc774b0b65ed06c42da177148b7de28b (patch) | |
tree | ce6dd30001fbc29953ff3ef225e27c95945f66df /bootstrap | |
parent | de7b87bfaa737c70b0958ef95e53b6e95b955142 (diff) |
Fixup
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -496,8 +496,9 @@ if [ -z "$kernel_source" ]; then mv linux-source-*/ linux xzcat linux-config-*/config.${debian_arch}_none_${debian_arch}.xz >linux/.config else - tar xf $kernel_source - mv \$(sed -re 's/(.+)\.tar\..+/\1/' <<<$kernel_source) linux + kernel_source=\$(basename $kernel_source) + tar xf \$kernel_source + mv \$(sed -re 's/(.+)\.tar\..+/\1/' <<<\$kernel_source) linux fi cd linux |