1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Add debug symbols to the built binary.
This ensure the generated debug symbol package include useful information.
Author: Petter Reinholdtsen <pere@debian.org>
Forwarded: no
Last-Update: 2024-05-20
---
Index: nslint-salsa/Makefile.in
===================================================================
--- nslint-salsa.orig/Makefile.in 2024-05-20 08:40:45.068986650 +0200
+++ nslint-salsa/Makefile.in 2024-05-20 08:40:59.225132123 +0200
@@ -48,7 +48,7 @@
DEFS = @DEFS@
# Standard CFLAGS
-CFLAGS = @CFLAGS@ $(CCOPT) $(DEFS) $(INCLS)
+CFLAGS = -g @CFLAGS@ $(CCOPT) $(DEFS) $(INCLS)
# Standard LDFLAGS
LDFLAGS = @LDFLAGS@
|