aboutsummaryrefslogtreecommitdiffstats
path: root/src/profstats
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-16 23:55:50 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-24 12:00:55 -0300
commit5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3 (patch)
tree83c0b5d8ba046b4de15e38829c6454b65937c7fe /src/profstats
parentbuild: remove MOD_SRCS variable (diff)
downloadfirejail-5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3.tar.gz
firejail-5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3.tar.zst
firejail-5cba21bad5383a4d2c4f7da5df7395e0c3b9eba3.zip
build: rename MOD vars to EXTRA vars
To make them less confusing, as they are extra dependencies, not files that are specific to the module. Commands used to search and replace: $ git grep -IFlz -e 'MOD_HDRS' -e 'MOD_OBJS' -- src | xargs -0 -I '{}' sh -c "printf '%s\n' \"\$(sed \ -e 's/MOD_HDRS/EXTRA_HDRS/g' \ -e 's/MOD_OBJS/EXTRA_OBJS/g' '{}')\" >'{}'" Added on commit f5b1ccaad ("makefiles: move extra deps into new MOD vars", 2022-05-07) / PR #5478.
Diffstat (limited to 'src/profstats')
-rw-r--r--src/profstats/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profstats/Makefile b/src/profstats/Makefile
index b4cb1a6f7..ae88bf2fd 100644
--- a/src/profstats/Makefile
+++ b/src/profstats/Makefile
@@ -5,6 +5,6 @@ ROOT = ../..
5PROG = profstats 5PROG = profstats
6TARGET = $(PROG) 6TARGET = $(PROG)
7 7
8MOD_HDRS = ../include/common.h 8EXTRA_HDRS = ../include/common.h
9 9
10include $(ROOT)/src/prog.mk 10include $(ROOT)/src/prog.mk