From 0c61eb9b47f0a706c68d9ce05fc1f0800657089a Mon Sep 17 00:00:00 2001
From: Dave Reisner <dreisner@archlinux.org>
Date: Sat, 3 Aug 2013 14:04:03 -0400
Subject: makefile: -std=c++11 should be part of CFLAGS

---
 Makefile | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 3a93916..9981945 100644
--- a/Makefile
+++ b/Makefile
@@ -5,9 +5,7 @@ ifneq "$(VDEVEL)" ""
 V=$(VDEVEL)
 endif
 
-CXX := $(CXX) -std=c++11
-
-base_CXXFLAGS = -Wall -Wextra -pedantic -O2 -g -DPONYMIX_VERSION=\"$(V)\"
+base_CXXFLAGS = -std=c++11 -Wall -Wextra -pedantic -O2 -g -DPONYMIX_VERSION=\"$(V)\"
 base_LIBS = -lm
 
 libpulse_CXXFLAGS = $(shell pkg-config --cflags libpulse)
-- 
cgit v1.2.3