aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-30 01:11:48 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-12-03 07:52:41 -0300
commit671c3f24923d53bae96c8ef4989c250a5ce787c3 (patch)
tree171900a03c4da7962f382304e26bd7cee312e8a6 /configure
parentconfigure*: print CC and CFLAGS (diff)
downloadfirejail-671c3f24923d53bae96c8ef4989c250a5ce787c3.tar.gz
firejail-671c3f24923d53bae96c8ef4989c250a5ce787c3.tar.zst
firejail-671c3f24923d53bae96c8ef4989c250a5ce787c3.zip
build: actually set LDFLAGS and LIBS in makefiles
Both variables are used inside on src/prog.mk and src/so.mk, but they are not currently defined in any makefile, so their values cannot be substituted by ./configure. This means that the variables can be set when running make (such as with `make LDFLAGS=-Lfoo`), but changing them in configure.ac has no effect. The same applies when trying to set them when running ./configure (such as with `./configure LDFLAGS=-Lfoo`).
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 523128f87..51767d296 100755
--- a/configure
+++ b/configure
@@ -5260,8 +5260,10 @@ cat <<EOF
5260Compile options: 5260Compile options:
5261 CC: $CC 5261 CC: $CC
5262 CFLAGS: $CFLAGS 5262 CFLAGS: $CFLAGS
5263 LDFLAGS: $LDFLAGS
5263 EXTRA_CFLAGS: $EXTRA_CFLAGS 5264 EXTRA_CFLAGS: $EXTRA_CFLAGS
5264 EXTRA_LDFLAGS: $EXTRA_LDFLAGS 5265 EXTRA_LDFLAGS: $EXTRA_LDFLAGS
5266 LIBS: $LIBS
5265 fatal warnings: $HAVE_FATAL_WARNINGS 5267 fatal warnings: $HAVE_FATAL_WARNINGS
5266 gcov instrumentation: $HAVE_GCOV 5268 gcov instrumentation: $HAVE_GCOV
5267 install as a SUID executable: $HAVE_SUID 5269 install as a SUID executable: $HAVE_SUID