From 57a692afcd4e2463c60394be5c6cad2da857a6ed Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 3 Jul 2021 21:05:22 +0000 Subject: [PATCH] zstd: remove sed -i --- extra/zstd/build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/zstd/build b/extra/zstd/build index 5f4ce7af..d2469bcf 100755 --- a/extra/zstd/build +++ b/extra/zstd/build @@ -1,6 +1,7 @@ #!/bin/sh -e -sed -i 's/^FLAGS.*=/FLAGS = -static /' programs/Makefile +sed 's/^FLAGS.*=/FLAGS = -static /' programs/Makefile > _ +mv -f _ programs/Makefile make \ HAVE_LZMA=0 \