Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16ffc4c3 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'kbuild-misc-v4.13' of...

Merge tag 'kbuild-misc-v4.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull misc Kbuild updates from Masahiro Yamada:

 - Use more portable shebang for Perl scripts

 - Remove trailing spaces from GCC version in kernel log

 - Make initramfs generation deterministic

* tag 'kbuild-misc-v4.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
  kbuild: create deterministic initramfs directory listings
  scripts/mkcompile_h: Remove trailing spaces from compiler version
  scripts: Switch to more portable Perl shebang
parents 58f051fc 9e6e0d5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
#!/usr/bin/perl
#!/usr/bin/env perl


# Copyright 2008, Intel Corporation
# Copyright 2008, Intel Corporation
#
#
+1 −1
Original line number Original line Diff line number Diff line
#!/usr/bin/perl
#!/usr/bin/env perl
#
#
# checkincludes: find/remove files included more than once
# checkincludes: find/remove files included more than once
#
#
+2 −1
Original line number Original line Diff line number Diff line
#!/usr/bin/perl -w
#!/usr/bin/env perl
# (c) 2001, Dave Jones. (the file handling bit)
# (c) 2001, Dave Jones. (the file handling bit)
# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
@@ -6,6 +6,7 @@
# Licensed under the terms of the GNU GPL License version 2
# Licensed under the terms of the GNU GPL License version 2


use strict;
use strict;
use warnings;
use POSIX;
use POSIX;
use File::Basename;
use File::Basename;
use Cwd 'abs_path';
use Cwd 'abs_path';
+1 −1
Original line number Original line Diff line number Diff line
#!/usr/bin/perl
#!/usr/bin/env perl


#	Check the stack usage of functions
#	Check the stack usage of functions
#
#
+1 −1
Original line number Original line Diff line number Diff line
#! /usr/bin/perl
#! /usr/bin/env perl
#
#
# checkversion find uses of LINUX_VERSION_CODE or KERNEL_VERSION
# checkversion find uses of LINUX_VERSION_CODE or KERNEL_VERSION
# without including <linux/version.h>, or cases of
# without including <linux/version.h>, or cases of
Loading