From 1f932953060c001e6adbe2133e50babf492c0c2c Mon Sep 17 00:00:00 2001 From: WhyFenceCode <120431739+WhyFenceCode@users.noreply.github.com> Date: Mon, 19 Jan 2026 11:31:39 -0800 Subject: [PATCH] Change license from MIT to GPL-3.0 in Makefile I did this, since it seemed like something that may help out given that each repository itself is licensed under GPL-3.0. I looked to other repositories to be sure and each is GPL-3.0, hence I think that the MIT label may be in error. This would close #298 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1468c06..58282d2 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,7 @@ deb: $(LIBS) $(MANS) --deb-priority optional \ --description "CS50 library for C" \ --input-type dir \ - --license "MIT" \ + --license "GPL-3.0" \ --maintainer "CS50 " \ --name $(BASENAME) \ --output-type deb \ @@ -121,7 +121,7 @@ rpm: $(LIBS) $(MANS) --chdir build/rpm/$(BASENAME) \ --description "CS50 library for C" \ --input-type dir \ - --license "MIT" \ + --license "GPL-3.0" \ --maintainer "CS50 " \ --name $(BASENAME) \ --output-type rpm \