From: Viktor Szakats Date: Fri, 20 Jun 2025 07:40:21 +0000 (+0200) Subject: autotools: drop `$top_builddir/src` from src header path X-Git-Tag: curl-8_15_0~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d270732b62f6432d97044a66f4fd2bd9fd26677;p=thirdparty%2Fcurl.git autotools: drop `$top_builddir/src` from src header path There is no generated header or source in `$top_builddir/src`, that src would #include. Also syncing with cmake. Closes #17679 --- diff --git a/src/Makefile.am b/src/Makefile.am index 34cd2a8e65..d7482932cf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -36,13 +36,11 @@ EXTRA_DIST = mk-file-embed.pl mkhelp.pl \ # # $(top_srcdir)/include is for libcurl's external include files # $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file -# $(top_builddir)/src is for curl's generated src/curl_config.h file # $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files # $(srcdir) for generated sources to find included sources AM_CPPFLAGS = -I$(top_srcdir)/include \ -I$(top_builddir)/lib \ - -I$(top_builddir)/src \ -I$(top_srcdir)/lib \ -I$(top_srcdir)/lib/curlx \ -I$(srcdir)