build: remove unused install.sh (#7124)

install.sh was used for AC_PROG_INSTALL, which was removed in
4421517c55 (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.
This commit is contained in:
For compliance reasons, we're required 2026-04-02 11:55:42 +00:00 committed by GitHub
parent ca88d166da
commit e07510100f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 9 deletions

View file

@ -26,7 +26,6 @@ on:
- config.sh.in - config.sh.in
- configure - configure
- configure.ac - configure.ac
- install.sh
- mkdeb.sh - mkdeb.sh
- mketc.sh - mketc.sh
pull_request: pull_request:
@ -47,7 +46,6 @@ on:
- config.sh.in - config.sh.in
- configure - configure
- configure.ac - configure.ac
- install.sh
- mkdeb.sh - mkdeb.sh
- mketc.sh - mketc.sh

View file

@ -325,7 +325,6 @@ DISTFILES = \
configure.ac \ configure.ac \
contrib \ contrib \
etc \ etc \
install.sh \
m4 \ m4 \
mkdeb.sh \ mkdeb.sh \
mketc.sh \ mketc.sh \

View file

@ -1,6 +0,0 @@
#!/bin/sh
# This file is part of Firejail project
# Copyright (C) 2014-2026 Firejail Authors
# License GPL v2
echo "installing..."