Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1742722
| Path | csiph.com!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Ben Hutchings <ben@decadent.org.uk> |
| Newsgroups | linux.kernel |
| Subject | [PATCH] perf: tools: Install strace group definitions without executable bit |
| Date | Sun, 01 Oct 2017 03:30:02 +0200 |
| Message-ID | <uvBeV-3IX-7@gated-at.bofh.it> (permalink) |
| MIME-Version | 1.0 |
| Content-Type | multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="XzWDHICoUFRd33PB" |
| Content-Disposition | inline |
| User-Agent | Mutt/1.5.23 (2014-03-12) |
| X-Sa-Exim-Connect-IP | <locally generated> |
| X-Sa-Exim-Mail-From | ben@decadent.org.uk |
| X-Sa-Exim-Version | 4.2.1 (built Mon, 26 Dec 2011 16:24:06 +0000) |
| X-Sa-Exim-Scanned | Yes (on shadbolt.decadent.org.uk) |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 50 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Alexander Shishkin <alexander.shishkin@linux.intel.com>, linux-kernel@vger.kernel.org |
| X-Original-Date | Sun, 1 Oct 2017 02:20:00 +0100 |
| X-Original-Message-ID | <20171001011959.GO18698@decadent.org.uk> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1742722 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
The install command sets executable permission by default, but these definitions aren't executables. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> --- tools/perf/Makefile.perf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 91ef44bfaf3e..9d19cfaa79b0 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -745,7 +745,7 @@ endif ifndef NO_LIBAUDIT $(call QUIET_INSTALL, strace/groups) \ $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'; \ - $(INSTALL) trace/strace/groups/* -t '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)' + $(INSTALL) -m 644 trace/strace/groups/* -t '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)' endif ifndef NO_LIBPERL $(call QUIET_INSTALL, perl-scripts) \
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] perf: tools: Install strace group definitions without executable bit Ben Hutchings <ben@decadent.org.uk> - 2017-10-01 03:30 +0200
csiph-web