diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-05-16 15:20:46 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-05-19 03:24:43 +0200 |
commit | 44ff8df77748124eb5c5f257eb585e9da26225d8 (patch) | |
tree | 94dca4f697449dc22ce5e669e2cd7c63109b0fad /test/TEST-06-SELINUX | |
parent | meson: use jinja2 for README (diff) | |
download | systemd-44ff8df77748124eb5c5f257eb585e9da26225d8.tar.xz systemd-44ff8df77748124eb5c5f257eb585e9da26225d8.zip |
Drop dependency on m4
m4 was hugely popular in the past, because autotools, automake, flex, bison and
many other things used it. But nowadays it much less popular, and might not even
be installed in the buildroot. (m4 is small, so it doesn't make a big difference.)
(FWIW, Fedora dropped make from the buildroot now,
https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot. I think it's
reasonable to assume that m4 will be dropped at some point too.)
The main reason to drop m4 is that the syntax is not very nice, and we should
minimize the number of different syntaxes that we use. We still have two
(configure_file() with @FOO@ and jinja2 templates with {{foo}} and the
pythonesque conditional expressions), but at least we don't need m4 (with
m4_dnl and `quotes').
Diffstat (limited to 'test/TEST-06-SELINUX')
-rwxr-xr-x | test/TEST-06-SELINUX/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TEST-06-SELINUX/test.sh b/test/TEST-06-SELINUX/test.sh index 978c930b71..421e1fe52d 100755 --- a/test/TEST-06-SELINUX/test.sh +++ b/test/TEST-06-SELINUX/test.sh @@ -48,7 +48,7 @@ test_append_files() { cp systemd_test.fc "$workspace/systemd-test-module" dracut_install -o sesearch dracut_install runcon - dracut_install checkmodule semodule semodule_package m4 make load_policy sefcontext_compile + dracut_install checkmodule semodule semodule_package make load_policy sefcontext_compile dracut_install -o /usr/libexec/selinux/hll/pp # Fedora/RHEL/... dracut_install -o /usr/lib/selinux/hll/pp # Debian/Ubuntu/... ) |