Description: Allow passing of CPPFLAGS and CXXFLAGS from the environment to support hardening flags
Author: Sandro Tosi <morph@debian.org>
Origin: http://code.google.com/p/mp3check/source/detail?r=4
Index: mp3check/Makefile
===================================================================
--- mp3check.orig/Makefile	2012-06-09 11:34:17.431755139 +0200
+++ mp3check/Makefile	2012-06-09 11:34:53.596207127 +0200
@@ -5,8 +5,8 @@
 WARN = -Wall -W -g
 #OPT = -O2
 OPT =
-CPPFLAGS = $(ADDITIONAL_CPPFLAGS)
-CXXFLAGS = $(WARN) $(OPT)
+CPPFLAGS += $(ADDITIONAL_CPPFLAGS)
+CXXFLAGS += $(WARN) $(OPT)
 CXX = g++
 CC = $(CXX)
 
