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).
This commit is contained in:
Stefan Schlosser 2024-11-21 20:28:43 +01:00
parent 1205c12853
commit 85955341f8

View File

@ -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