diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-23 22:50:37 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-23 22:50:37 +0300 |
commit | 744a8d6cd9ea74395f9f1d05b5bb7280fe5f73ea (patch) | |
tree | 770120d30e9da8fdcfe5656e4b66f96f0ec9aa6a /core/rsync | |
parent | 12432c11ba7f7b317cd090eccd0711ccdf294327 (diff) | |
download | repository-744a8d6cd9ea74395f9f1d05b5bb7280fe5f73ea.tar.gz |
rsync: POSIX sed
Diffstat (limited to 'core/rsync')
-rwxr-xr-x | core/rsync/build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/rsync/build b/core/rsync/build index 8b4a7e2c..5aadaca9 100755 --- a/core/rsync/build +++ b/core/rsync/build @@ -2,7 +2,8 @@ # Swap to awk script instead of perl script # for building rsync. See files/mkproto.awk. -sed -i 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in +sed 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in > _ +cat _ > Makefile.in; rm -f _ export CFLAGS="-static $CFLAGS" |