From 8d270732b62f6432d97044a66f4fd2bd9fd26677 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 20 Jun 2025 09:40:21 +0200 Subject: [PATCH] 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 --- src/Makefile.am | 2 -- 1 file changed, 2 deletions(-) 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) -- 2.47.3