commit: 0d5348e7b426a746c7b8801d62e1c0f88eb8a9f6 Author: Cristian Othón Martínez Vera <cfuga <AT> cfuga <DOT> mx> AuthorDate: Tue Mar 28 20:19:35 2023 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Fri Mar 31 20:26:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d5348e7
app-misc/linux-logo: add patch to remove implicit dependency on sys-apps/which Signed-off-by: Cristian Othón Martínez Vera <cfuga <AT> cfuga.mx> Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org> .../linux-logo/files/linux-logo-6.0-which.patch | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-misc/linux-logo/files/linux-logo-6.0-which.patch b/app-misc/linux-logo/files/linux-logo-6.0-which.patch new file mode 100644 index 000000000000..302782b9e239 --- /dev/null +++ b/app-misc/linux-logo/files/linux-logo-6.0-which.patch @@ -0,0 +1,29 @@ +--- a/configure ++++ b/configure +@@ -28,13 +28,13 @@ + fi + + OS=`uname` +-INSTALL=`which install` ++INSTALL=`command -v install` + + if [ -z "$PREFIX" ]; then + PREFIX=/usr/local + fi + +-which xgettext ++command -v xgettext + XGETTEXT_MISSING=$? + + if [ $XGETTEXT_MISSING -eq 0 ]; then +--- a/libsysinfo-0.3.0/configure ++++ b/libsysinfo-0.3.0/configure +@@ -13,7 +13,7 @@ + + OS=`uname` + PREFIX=/usr/local +-INSTALL=`which install` ++INSTALL=`command -v install` + + LIBSYSINFO_INCLUDE="-I.." + LFLAGS=""
