diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-23 17:20:48 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-23 17:20:48 +0300 |
commit | 1e48bf2d4c27d658e5141f44300ed1979a7c4182 (patch) | |
tree | 8c7eaff6f442f55959e43403b702bc80b9a72d9d /extra | |
parent | 00731de7b4320e6aec0a86db4c448d07529dece4 (diff) | |
download | repository-1e48bf2d4c27d658e5141f44300ed1979a7c4182.tar.gz |
opendoas: POSIX sed
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/opendoas/build | 3 |
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 \ |