diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-24 01:39:49 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-24 01:39:49 +0300 |
commit | 37d2f7501b7bb3256ea9026211ccebf1d0a647ae (patch) | |
tree | 71d6e91234d44f17da9cf7b6d4f31b61f804ed2a /extra/kcgi | |
parent | d7cdc045b35907f76910b0a4392042bdaa4b56b0 (diff) | |
download | repository-37d2f7501b7bb3256ea9026211ccebf1d0a647ae.tar.gz |
kcgi: use clsed
Diffstat (limited to 'extra/kcgi')
-rwxr-xr-x | extra/kcgi/build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/kcgi/build b/extra/kcgi/build index 0d0565fb..178fdc95 100755 --- a/extra/kcgi/build +++ b/extra/kcgi/build @@ -1,12 +1,12 @@ #!/bin/sh -e # Modify Makefile to make it POSIX -sed -i '/^\.for/,/^\.endfor/d' Makefile +clsed '/^\.for/,/^\.endfor/d' Makefile # Modify Makefile to properly use LDFLAGS # We don't want this expression to expand # shellcheck disable=2016 -sed -i '/^kfcgi:/{n; s,$, $(LDFLAGS),}' Makefile +clsed '/^kfcgi:/{n; s,$, $(LDFLAGS),}' Makefile ./configure \ PREFIX=/usr \ |