From 85955341f831aafd2151cfae304c59ad7b7a2c23 Mon Sep 17 00:00:00 2001 From: Stefan Schlosser Date: Thu, 21 Nov 2024 20:28:43 +0100 Subject: [PATCH] build: fix .gitlab-ci.yml removal Instead of deleting .gitlab-ci.yml after installing into INSTALLDIR, the target tried to delete gitlab-ci.yml (without dot). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b66bd5c..639e288f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ install: cp -r ./. $(DESTDIR)$(INSTALLDIR) rm -f $(DESTDIR)$(INSTALLDIR)/Makefile rm -f $(DESTDIR)$(INSTALLDIR)/configure - rm -f $(DESTDIR)$(INSTALLDIR)/gitlab-ci.yml + rm -f $(DESTDIR)$(INSTALLDIR)/.gitlab-ci.yml rm -rf $(DESTDIR)$(INSTALLDIR)/.git test-install: all