diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2021-04-21 11:54:48 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2021-04-21 15:42:36 +0200 |
commit | 0c4285d77eb66642c7e16a0c8dfda9eea4a4a5b1 (patch) | |
tree | 731db39537468eeddd6353ed0ac41cf0bdf237b6 /pathd | |
parent | build: make builddir include path consistent (diff) | |
download | frr-0c4285d77eb66642c7e16a0c8dfda9eea4a4a5b1.tar.xz frr-0c4285d77eb66642c7e16a0c8dfda9eea4a4a5b1.zip |
build: properly split CFLAGS from AC_CFLAGS
`CFLAGS` is a "user variable", not intended to be controlled by
configure itself. Let's put all the "important" stuff in AC_CFLAGS and
only leave debug/optimization controls in CFLAGS.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pathd')
-rw-r--r-- | pathd/subdir.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathd/subdir.am b/pathd/subdir.am index 4eabdd2ac..0666e8d3c 100644 --- a/pathd/subdir.am +++ b/pathd/subdir.am @@ -75,5 +75,5 @@ pathd_pathd_pcep_la_LIBADD = endif -pathd_pathd_pcep_la_CFLAGS = $(WERROR) +#pathd_pathd_pcep_la_CFLAGS = $(AM_CFLAGS) pathd_pathd_pcep_la_LDFLAGS = -avoid-version -module -shared -export-dynamic |