diff options
author | Yang Tse <yangsita@gmail.com> | 2013-01-20 04:17:11 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-01-20 04:20:02 +0100 |
commit | 63605d281f804382d2bd2d8655d73e188c12e071 (patch) | |
tree | f691a1c88b171b2399693d7421faa3d99762a48e /src/Makefile.am | |
parent | f4cc54cb4746ae5a6d63438aae811f6543b13774 (diff) | |
download | curl-63605d281f804382d2bd2d8655d73e188c12e071.tar.gz |
Makefile.inc: fix $(top_srcdir) not allowed in _SOURCES variables
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 7e98d115b..af5a48800 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2013, 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 @@ -116,7 +116,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_SOURCES) + @@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/src -Wtool_hugehelp.c $(CURL_CFILES) $(CURL_HFILES) if CURLDEBUG # for debug builds, we scan the sources on all regular make invokes |