aboutsummaryrefslogtreecommitdiffstats
path: root/src/etc-cleanup
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/etc-cleanup
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/etc-cleanup')
-rw-r--r--src/etc-cleanup/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc-cleanup/Makefile b/src/etc-cleanup/Makefile
index c8a12476e..c3c482bdb 100644
--- a/src/etc-cleanup/Makefile
+++ b/src/etc-cleanup/Makefile
@@ -5,6 +5,6 @@ ROOT = ../..
5PROG = etc-cleanup 5PROG = etc-cleanup
6TARGET = $(PROG) 6TARGET = $(PROG)
7 7
8MOD_HDRS = ../include/etc_groups.h 8EXTRA_HDRS = ../include/etc_groups.h
9 9
10include $(ROOT)/src/prog.mk 10include $(ROOT)/src/prog.mk