diff options
author | Yang Tse <yangsita@gmail.com> | 2011-05-30 22:32:58 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-05-30 22:34:06 +0200 |
commit | ecfe0b5b18607f1d6cce3ebbaa50117107247b6c (patch) | |
tree | 742ef4538ed06736fc92e16bf0a1c802bd6c43ab /lib | |
parent | 9460896cbe057a4ce7348b91d117dda045c2a6e1 (diff) |
Makefile.am: fix spurious CFLAGS duplication
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 9a008bf6c..3d3e91c52 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -46,7 +46,7 @@ lib_LTLIBRARIES = libcurl.la LIBCURL_LIBS = @LIBCURL_LIBS@ # This might hold -Werror -libcurl_la_CFLAGS = $(CFLAGS) @CURL_CFLAG_EXTRAS@ +CFLAGS += @CURL_CFLAG_EXTRAS@ # Specify our include paths here, and do it relative to $(top_srcdir) and # $(top_builddir), to ensure that these paths which belong to the library |