mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 11:26:29 -04:00
The main program did respect cflags, but the cpp example program did not. Approved by: blanket
11 lines
315 B
Text
11 lines
315 B
Text
--- examples/cpp/Makefile.orig 2013-03-29 06:38:36 UTC
|
|
+++ examples/cpp/Makefile
|
|
@@ -15,7 +15,7 @@ include $(BLDDIR)/config.mk
|
|
|
|
default: all
|
|
|
|
-CXXFLAGS = $(CFLAGS_PERSONAL) $(CADD)
|
|
+CXXFLAGS+= $(CFLAGS_PERSONAL) $(CADD)
|
|
LDFLAGS += $(LADD)
|
|
|
|
# If this were a real application, working from an installed copy of
|