From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id A30703858281 for ; Thu, 22 Dec 2022 03:40:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A30703858281 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 24F4534135A; Thu, 22 Dec 2022 03:40:42 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH/committed] remove +x bit on source files Date: Wed, 21 Dec 2022 22:40:39 -0500 Message-Id: <20221222034039.12446-1-vapier@gentoo.org> X-Mailer: git-send-email 2.39.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: These should never be marked executable as they have no shebang and are pure source files. --- include/elf/epiphany.h | 0 include/opcode/bfin.h | 0 newlib/libc/machine/w65/lshrhi.S | 0 newlib/libc/machine/w65/sdivhi3.S | 0 newlib/libc/machine/w65/smulhi3.S | 0 newlib/libc/machine/w65/udivhi3.S | 0 newlib/libc/machine/w65/umodhi3.S | 0 newlib/libc/sys/rdos/chown.c | 0 newlib/libc/sys/rdos/fork.c | 0 newlib/libc/sys/rdos/fstat.c | 0 newlib/libc/sys/rdos/lseek.c | 0 newlib/libc/sys/rdos/open.c | 0 newlib/libc/sys/rdos/rdos.h | 0 newlib/libc/sys/rdos/readlink.c | 0 newlib/libc/sys/rdos/stat.c | 0 newlib/libc/sys/rdos/symlink.c | 0 16 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 include/elf/epiphany.h mode change 100755 => 100644 include/opcode/bfin.h mode change 100755 => 100644 newlib/libc/machine/w65/lshrhi.S mode change 100755 => 100644 newlib/libc/machine/w65/sdivhi3.S mode change 100755 => 100644 newlib/libc/machine/w65/smulhi3.S mode change 100755 => 100644 newlib/libc/machine/w65/udivhi3.S mode change 100755 => 100644 newlib/libc/machine/w65/umodhi3.S mode change 100755 => 100644 newlib/libc/sys/rdos/chown.c mode change 100755 => 100644 newlib/libc/sys/rdos/fork.c mode change 100755 => 100644 newlib/libc/sys/rdos/fstat.c mode change 100755 => 100644 newlib/libc/sys/rdos/lseek.c mode change 100755 => 100644 newlib/libc/sys/rdos/open.c mode change 100755 => 100644 newlib/libc/sys/rdos/rdos.h mode change 100755 => 100644 newlib/libc/sys/rdos/readlink.c mode change 100755 => 100644 newlib/libc/sys/rdos/stat.c mode change 100755 => 100644 newlib/libc/sys/rdos/symlink.c diff --git a/include/elf/epiphany.h b/include/elf/epiphany.h old mode 100755 new mode 100644 diff --git a/include/opcode/bfin.h b/include/opcode/bfin.h old mode 100755 new mode 100644 diff --git a/newlib/libc/machine/w65/lshrhi.S b/newlib/libc/machine/w65/lshrhi.S old mode 100755 new mode 100644 diff --git a/newlib/libc/machine/w65/sdivhi3.S b/newlib/libc/machine/w65/sdivhi3.S old mode 100755 new mode 100644 diff --git a/newlib/libc/machine/w65/smulhi3.S b/newlib/libc/machine/w65/smulhi3.S old mode 100755 new mode 100644 diff --git a/newlib/libc/machine/w65/udivhi3.S b/newlib/libc/machine/w65/udivhi3.S old mode 100755 new mode 100644 diff --git a/newlib/libc/machine/w65/umodhi3.S b/newlib/libc/machine/w65/umodhi3.S old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/chown.c b/newlib/libc/sys/rdos/chown.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/fork.c b/newlib/libc/sys/rdos/fork.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/fstat.c b/newlib/libc/sys/rdos/fstat.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/lseek.c b/newlib/libc/sys/rdos/lseek.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/open.c b/newlib/libc/sys/rdos/open.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/rdos.h b/newlib/libc/sys/rdos/rdos.h old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/readlink.c b/newlib/libc/sys/rdos/readlink.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/stat.c b/newlib/libc/sys/rdos/stat.c old mode 100755 new mode 100644 diff --git a/newlib/libc/sys/rdos/symlink.c b/newlib/libc/sys/rdos/symlink.c old mode 100755 new mode 100644 -- 2.39.0