From b786bcc4b82e90c80c36b6f6fee2e113ae481ef3 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 6 Sep 2023 08:33:35 +0200 Subject: [PATCH] fix sed? --- debian/rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 9278a8f1..c8d2ef21 100755 --- a/debian/rules +++ b/debian/rules @@ -817,8 +817,8 @@ build-wasm/compiler-rt-%: @echo "Using cmake: $(CMAKE_BIN)" mkdir -p "$@" # remove unsupported flags - STAGE_2_CFLAGS=`echo $(STAGE_2_CFLAGS) | sed 's/-fcf-protection//g'` - STAGE_2_CXXFLAGS=`echo $(STAGE_2_CXXFLAGS) | sed 's/-fcf-protection//g'` + STAGE_2_CFLAGS=`echo $(STAGE_2_CFLAGS) | sed -e 's/-fcf-protection//g'` + STAGE_2_CXXFLAGS=`echo $(STAGE_2_CXXFLAGS) | sed -e 's/-fcf-protection//g'` $(CMAKE_BIN) -B "$@" -S compiler-rt/lib/builtins/ \ -G Ninja \