aboutsummaryrefslogtreecommitdiff
path: root/extra/opendoas
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-23 17:20:48 +0300
committerCem Keylan <cem@ckyln.com>2020-05-23 17:20:48 +0300
commit1e48bf2d4c27d658e5141f44300ed1979a7c4182 (patch)
tree8c7eaff6f442f55959e43403b702bc80b9a72d9d /extra/opendoas
parent00731de7b4320e6aec0a86db4c448d07529dece4 (diff)
downloadrepository-1e48bf2d4c27d658e5141f44300ed1979a7c4182.tar.gz
opendoas: POSIX sed
Diffstat (limited to 'extra/opendoas')
-rwxr-xr-xextra/opendoas/build3
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/opendoas/build b/extra/opendoas/build
index d660c7e3..5a317865 100755
--- a/extra/opendoas/build
+++ b/extra/opendoas/build
@@ -1,7 +1,8 @@
#!/bin/sh -e
# shellcheck disable=SC2016
-sed -i '/chown ${BINOWN}:${BINGRP}/d' bsd.prog.mk
+sed '/chown ${BINOWN}:${BINGRP}/d' bsd.prog.mk > _
+cat _ > bsd.prog.mk; rm -f _
./configure \
--enable-static \