From e07510100fd1766500e160cc5c14e4a0f2fe4ef8 Mon Sep 17 00:00:00 2001 From: "For compliance reasons, we're required" <262846459+fcrwr@users.noreply.github.com> Date: Thu, 2 Apr 2026 11:55:42 +0000 Subject: [PATCH] build: remove unused install.sh (#7124) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit install.sh was used for AC_PROG_INSTALL, which was removed in 4421517c558b9a2964263ffae42c6fb9d3e33bf1 (corresponding PR #5133) From the manual of GNU Autoconf (version 2.73): > Autoconf comes with a copy of ‘install-sh’ that you can use. If > you use ‘AC_PROG_INSTALL’, you must include ‘install-sh’ in your > distribution; otherwise ‘autoreconf’ and ‘configure’ will produce > an error message saying they can’t find it—even if the system > you’re on has a good ‘install’ program. This check is a safety > measure to prevent you from accidentally leaving that file out, > which would prevent your package from installing on systems that > don’t have a BSD-compatible ‘install’ program. If install-sh wasn't found, configure would check for install.sh in srcdir. install.sh is a placeholder that does nothing, without it configure would abort. --- .github/workflows/build.yml | 2 -- Makefile | 1 - install.sh | 6 ------ 3 files changed, 9 deletions(-) delete mode 100755 install.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58f0626ab..6bf32d725 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,6 @@ on: - config.sh.in - configure - configure.ac - - install.sh - mkdeb.sh - mketc.sh pull_request: @@ -47,7 +46,6 @@ on: - config.sh.in - configure - configure.ac - - install.sh - mkdeb.sh - mketc.sh diff --git a/Makefile b/Makefile index 6e2380a1e..b3bd1cc3b 100644 --- a/Makefile +++ b/Makefile @@ -325,7 +325,6 @@ DISTFILES = \ configure.ac \ contrib \ etc \ - install.sh \ m4 \ mkdeb.sh \ mketc.sh \ diff --git a/install.sh b/install.sh deleted file mode 100755 index 49ae179f9..000000000 --- a/install.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# This file is part of Firejail project -# Copyright (C) 2014-2026 Firejail Authors -# License GPL v2 - -echo "installing..."