From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 17/28] pciutils: Do not make headers executable Date: Fri, 04 Feb 2022 16:47:37 +0000 Message-ID: <20220204164748.315559-17-michael.tremer@ipfire.org> In-Reply-To: <20220204164748.315559-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7209276131664356670==" List-Id: --===============7209276131664356670== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- lfs/pciutils | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lfs/pciutils b/lfs/pciutils index 995c3c0a4..2dcf9e868 100644 --- a/lfs/pciutils +++ b/lfs/pciutils @@ -80,11 +80,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Install headers. mkdir -pv /usr/include/pci - cd $(DIR_APP) && install -p lib/pci.h /usr/include/pci - cd $(DIR_APP) && install -p lib/header.h /usr/include/pci - cd $(DIR_APP) && install -p lib/config.h /usr/include/pci - cd $(DIR_APP) && install -p lib/types.h /usr/include/pci - cd $(DIR_APP) && install -p lib/libpci.pc /usr/lib/pkgconfig + cd $(DIR_APP) && install -m 644 lib/pci.h /usr/include/pci + cd $(DIR_APP) && install -m 644 lib/header.h /usr/include/pci + cd $(DIR_APP) && install -m 644 lib/config.h /usr/include/pci + cd $(DIR_APP) && install -m 644 lib/types.h /usr/include/pci + cd $(DIR_APP) && install -m 644 lib/libpci.pc /usr/lib/pkgconfig chmod -v 755 /usr/lib/libpci.so @rm -rf $(DIR_APP) @$(POSTBUILD) -- 2.30.2 --===============7209276131664356670==--