From: Baptiste BEAUPLAT Date: Mon, 15 Oct 2018 20:57:40 +0200 Subject: fix-extraneous-licence Remove licence.txt file from the Makefile --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 05ef506..5df6982 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,6 @@ src/src-conf.mk: config.mk Makefile src-conf.sh install: $(PROGNAME) $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(docdir) $(INSTALL) -m755 $(PROGNAME) $(DESTDIR)$(bindir) - $(INSTALL) -m644 README licence.txt $(DESTDIR)$(docdir) if [ -n "$(pixmapdir)" ]; then \ $(INSTALL) -d $(DESTDIR)$(pixmapdir) && \ $(INSTALL) -m644 vitetris.xpm $(DESTDIR)$(pixmapdir); fi @@ -82,7 +81,6 @@ install-hiscores: uninstall: rm -f $(bindir)/$(PROGNAME) rm -f $(docdir)/README - rm -f $(docdir)/licence.txt rmdir $(docdir) test -z "$(pixmapdir)" || rm -f $(pixmapdir)/vitetris.xpm -rmdir "$(pixmapdir)"