From 599f90989a75d5ad85bcf01b7e2abfba06e0eb32 Mon Sep 17 00:00:00 2001 From: David Cramer Date: Wed, 5 Aug 2020 17:25:48 -0700 Subject: [PATCH] Replace sed use with perl to fix macOS builds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cf3fe4d..07c3eaf 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ fix-python: - sed -i 's/python$$/python2/g' $(OUT_DIR)/libinjection/src/*.py + perl -i -pe 's/python$$/python2/g' $(OUT_DIR)/libinjection/src/*.py .PHONY: fix-python