From 000f094c1ba0975061c66cf7e60819b0dc5fe8c0 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Tue, 10 May 2022 10:38:50 -0300 Subject: common.mk.in: fix comment about file usage intent It currently claims to contain "common definitions for all makefiles", but it is not included by all makefiles under src/ and it contains variable definitions that may possibly clash with the ones defined on certain makefiles. Mainly, the following makefiles (which are used for building shared objects) use a different set of CFLAGS compared to src/common.mk.in: * src/libpostexecseccomp/Makefile.in * src/libtrace/Makefile.in * src/libtracelog/Makefile.in Given the contents of common.mk.in, it seems to be intended only for makefiles that build C programs and/or non-shared objects (which are most of, but not all of the makefiles under src/), so put that in the comment instead. --- src/common.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.mk.in b/src/common.mk.in index 64ed774ad..8c83e372b 100644 --- a/src/common.mk.in +++ b/src/common.mk.in @@ -1,4 +1,4 @@ -# common definitions for all makefiles +# Common definitions for building C programs and non-shared objects CC=@CC@ prefix=@prefix@ -- cgit v1.2.3-54-g00ecf