Browse Source

[3172] Fix build failure on BSD systems

The comment at the end of adding to AM_CXXFLAGS was making the total
line too long, and the automake tool was splitting the line. This meant
that the macro assignment had an escaped comment, which the BSD make
interprets differently to GNU make (the latter swallows the next line as
part of the comment, whereas the former doesn't).
Kean Johnston 11 years ago
parent
commit
6651846261
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/lib/xfr/Makefile.am

+ 2 - 1
src/lib/xfr/Makefile.am

@@ -5,7 +5,8 @@ AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 AM_CXXFLAGS = $(B10_CXXFLAGS)
-AM_CXXFLAGS += -Wno-unused-parameter # see src/lib/cc/Makefile.am
+AM_CXXFLAGS += -Wno-unused-parameter
+# see src/lib/cc/Makefile.am
 
 CLEANFILES = *.gcno *.gcda