1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Enable hardening during build.
Use CPPFLAGS, CFLAGS and LDFLAGS during built to inherit required
build flags.
Author: Petter Reinholdtsen <pere@debian.org>
Forwarded: no
Last-Update: 2024-11-13
---
--- coco-cpp-20120102.orig/Makefile
+++ coco-cpp-20120102/Makefile
@@ -1,5 +1,5 @@
all:
- g++ *.cpp -o Coco $(CFLAGS)
+ g++ *.cpp -o Coco $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
clean:
rm -f Coco
|