From 8325d8755a0b1e2e759c89cda11df544b95fb464 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 22 Oct 2018 16:32:17 +0200 Subject: update-kernel-config: config_names should not be separated by "\n", but by " " --- update-kernel-config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'update-kernel-config') diff --git a/update-kernel-config b/update-kernel-config index 5012979..7439c7d 100755 --- a/update-kernel-config +++ b/update-kernel-config @@ -28,7 +28,8 @@ fi config_names=$( git -C "${git_repo_path}/$1/$2" archive HEAD -- | \ tar -t | \ - grep '^config\($\|\.\)' + grep '^config\($\|\.\)' | \ + tr '\n' ' ' ) diff=$( -- cgit v1.2.3-54-g00ecf