aboutsummaryrefslogtreecommitdiffstats
path: root/mketc.sh
diff options
context:
space:
mode:
authorLibravatar rusty-snake <41237666+rusty-snake@users.noreply.github.com>2020-04-04 19:40:11 +0200
committerLibravatar rusty-snake <41237666+rusty-snake@users.noreply.github.com>2020-04-04 19:40:11 +0200
commite8b60d782eccee13fae539732236e0b19111f706 (patch)
tree8698be4341cea7047a59889b7b50685a233946db /mketc.sh
parentHarden signal-desktop.profile and add rules for Firefox (diff)
downloadfirejail-e8b60d782eccee13fae539732236e0b19111f706.tar.gz
firejail-e8b60d782eccee13fae539732236e0b19111f706.tar.zst
firejail-e8b60d782eccee13fae539732236e0b19111f706.zip
Speedup the buildsystem
- replaing 'include /etc/firejail/foobar.inc' with 'include $(sysconfdir)/firejail/foobar.inc' is useless since 0.9.58 - onetime calling install with globbing is faster the a loop calling install nearly 1000 times
Diffstat (limited to 'mketc.sh')
-rwxr-xr-xmketc.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/mketc.sh b/mketc.sh
index 8dbc72915..d9728f3c5 100755
--- a/mketc.sh
+++ b/mketc.sh
@@ -3,16 +3,6 @@
3# Copyright (C) 2014-2020 Firejail Authors 3# Copyright (C) 2014-2020 Firejail Authors
4# License GPL v2 4# License GPL v2
5 5
6rm -fr .etc
7mkdir .etc
8
9for file in etc/*.profile etc/*.inc etc/*.net;
10do
11 sed "s;/etc/firejail;$1/firejail;g" $file > .$file
12done
13
14if [ "x$2" = "xyes" ]
15then
16sed -i -e ' 6sed -i -e '
171i# Workaround for systems where common UNIX utilities are symlinks to busybox.\ 71i# Workaround for systems where common UNIX utilities are symlinks to busybox.\
18# If this is not your case you can remove --enable-busybox-workaround from\ 8# If this is not your case you can remove --enable-busybox-workaround from\
@@ -23,5 +13,4 @@ noblacklist \${PATH}/su\
23noblacklist \${PATH}/sudo\ 13noblacklist \${PATH}/sudo\
24noblacklist \${PATH}/nc\ 14noblacklist \${PATH}/nc\
25noblacklist \${PATH}/crontab\ 15noblacklist \${PATH}/crontab\
26' .etc/disable-common.inc 16' etc/disable-common.inc
27fi