From c4bc4c795d00f38a77f75969ff9b3214febee6ac Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Tue, 23 Jan 2024 15:19:08 -0800 Subject: [PATCH] Makefile: do not remove existing git-cola when installing Use --ignore-installed --no-deps so that git-cola can be installed without modifying the existing file system state. Signed-off-by: David Aguilar --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 68904f51..82a06080 100644 --- a/Makefile +++ b/Makefile @@ -48,6 +48,8 @@ ifdef DESTDIR endif install_args += --prefix="$(prefix)" install_args += --disable-pip-version-check +install_args += --ignore-installed +install_args += --no-deps export prefix PYTHON_DIRS = cola -- 2.11.4.GIT