diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-04-03 23:06:44 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-04-03 23:07:30 +0200 |
commit | a8b51a179a1b6d4c139b0c3e1b19f029cd65d89a (patch) | |
tree | cfcbaf387f431c2b24c50f3cce7693fa809433a9 /src/Makefile.am | |
parent | 1571da69b54ed4cb7c2eafd43ce728d8afebf50f (diff) | |
download | curl-a8b51a179a1b6d4c139b0c3e1b19f029cd65d89a.tar.gz |
lib/src: fix the checksrc invoke
... now works correctly when invoke from the root makefile
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 535a740a5..aa8a7154a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -130,7 +130,7 @@ endif # ignore tool_hugehelp.c since it is generated source code and it plays # by slightly different rules! checksrc: - @@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/src -Wtool_hugehelp.c $(CURL_CFILES) $(CURL_HFILES) + @@PERL@ $(top_srcdir)/lib/checksrc.pl -W$(top_srcdir)/src/tool_hugehelp.c $(top_srcdir)/src/*.[ch] if CURLDEBUG # for debug builds, we scan the sources on all regular make invokes |