Codebase list ahcpd / a6436c6
Patch upstream Makefile to not overwrite dpkg-buildflags CFLAGS (Closes: #763180) Stephane Glondu 4 years ago
2 changed file(s) with 24 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Guillaume Delacour <gui@iroqwa.org>
1 Date: Mon, 15 Jul 2019 14:49:56 +0200
2 Subject: Don't overwrite dpkg-buildflags CFLAGS
3
4 Bug-Debian: https://bugs.debian.org/763180
5 Last-Update: 2014-09-28
6 ---
7 Makefile | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/Makefile b/Makefile
11 index e52eeb7..2ecb3b5 100644
12 --- a/Makefile
13 +++ b/Makefile
14 @@ -4,7 +4,7 @@ CDEBUGFLAGS = -Os -g -Wall
15
16 DEFINES = $(PLATFORM_DEFINES)
17
18 -CFLAGS = $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)
19 +CFLAGS += $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)
20
21 SRCS = ahcpd.c monotonic.c transport.c prefix.c configure.c config.c lease.c
22
0 01_dont_overwrite_cflags.diff