From d6f28609ba3b250079ac0c55422dafdabb6c0c71 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 26 Apr 2021 00:48:03 +0200 Subject: [PATCH] build: Remove duplicate -g in cc command. Specifying -g more than once has no effect. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 230a966..200a7c0 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ $(lsg_objs) $(liblopsub_objs) $(lopsubex_objs): %.o: %.c lopsubgen.o config_file.o: $(CC) -g -c -fPIC -o $@ ${@:.o=.c} lsg1.o: lsg.c lsg.h - $(CC) -g -DSTAGE1 -Wall -g -c $< -o $@ + $(CC) -g -DSTAGE1 -Wall -c $< -o $@ %.o: %.c $(CC) -Wall -I. -g -c -fPIC -o $@ $< -- 2.39.2