blob: c47258d5e5cbd3d4aca9bfd4394a4423dcd1c727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Description: inject standard debian build flags.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2022-07-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- abpoa.orig/Makefile
+++ abpoa/Makefile
@@ -23,7 +23,7 @@
OPT_FLAGS = -O3
endif
-CFLAGS = $(OPT_FLAGS) $(EXTRA_FLAGS)
+CFLAGS = $(CPPFLAGS) $(OPT_FLAGS) $(EXTRA_FLAGS) $(LDFLAGS)
# for gprof
ifneq ($(pg),)
|