From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 70CEF1382C5 for ; Tue, 23 Jan 2018 21:20:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA7A5E08DF; Tue, 23 Jan 2018 21:20:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82630E08DF for ; Tue, 23 Jan 2018 21:20:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7443F335C0B for ; Tue, 23 Jan 2018 21:20:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C128415D for ; Tue, 23 Jan 2018 21:20:53 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1516742443.4113e3ebf09d69e49592495a7e7213d8e71b3ee9.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:4.14 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 4113e3ebf09d69e49592495a7e7213d8e71b3ee9 X-VCS-Branch: 4.14 Date: Tue, 23 Jan 2018 21:20:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 17cca76a-2764-4a3f-a944-91fcfb9e057a X-Archives-Hash: f02f3420d0d6951e5582c0565e6cd46d commit: 4113e3ebf09d69e49592495a7e7213d8e71b3ee9 Author: Mike Pagano gentoo org> AuthorDate: Tue Jan 23 21:20:43 2018 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Jan 23 21:20:43 2018 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=4113e3eb Removal of redundant patch: 2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch ...le-dont-assume-sync-checksh-is-executable.patch | 25 ---------------------- 1 file changed, 25 deletions(-) diff --git a/2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch b/2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch deleted file mode 100644 index 3199be9..0000000 --- a/2901_tools-objtool-makefile-dont-assume-sync-checksh-is-executable.patch +++ /dev/null @@ -1,25 +0,0 @@ -From: Andrew Morton -Subject: tools/objtool/Makefile: don't assume sync-check.sh is executable - -patch(1) loses the x bit. Kernel build breaks. - -Fixes: 3bd51c5a371de ("objtool: Move kernel headers/code sync check to a script") -Cc: Ingo Molnar -Cc: Josh Poimboeuf -Signed-off-by: Andrew Morton ---- - - -diff -puN tools/objtool/Makefile~tools-objtool-makefile-dont-assume-sync-checksh-is-executable tools/objtool/Makefile ---- a/tools/objtool/Makefile~tools-objtool-makefile-dont-assume-sync-checksh-is-executable -+++ a/tools/objtool/Makefile -@@ -46,7 +46,7 @@ $(OBJTOOL_IN): fixdep FORCE - @$(MAKE) $(build)=objtool - - $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN) -- @./sync-check.sh -+ @$(CONFIG_SHELL) ./sync-check.sh - $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@ - - -_