From 78a787d5a748622f043fb4a33201ca1d1f3ace9d Mon Sep 17 00:00:00 2001 From: Brian Kepha <105016635+AngelofVerdant@users.noreply.github.com> Date: Mon, 25 May 2026 10:04:57 +0300 Subject: [PATCH] Fix case sensitivity in INSTALL commands fix: correct capitalization of Configure in INSTALL instructions Line 9 references `configure` but the actual script is `Configure` (capital C) Update lines to match the real filename to prevent "No such file or directory" errors. --- INSTALL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index d3b6e4ec..ffe91532 100644 --- a/INSTALL +++ b/INSTALL @@ -6,8 +6,8 @@ Basic Installation The following shell commands: - test -f configure || ./bootstrap - ./configure + test -f Configure || ./bootstrap + ./Configure make make install