From 15fd8241a9c3fd035be05db1168fad82098e74cd Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 10 Oct 2015 12:42:24 +0200 Subject: [PATCH] build: Replace a sed expression with a simpler awk The former does not work for sure on macosx. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index bba75657..65ddfa31 100644 --- a/src/Makefile +++ b/src/Makefile @@ -330,7 +330,7 @@ endif .PHONY: kvazaar.pc init_submodules install install-pc install-prog install-lib .PHONY: install-dylib install-dll clean -kvazaar.pc: KVZ_VERSION = $(shell sed -n 's/^#define\s\+KVZ_VERSION\s\+\(.*\)/\1/ p' global.h) +kvazaar.pc: KVZ_VERSION = $(shell awk '/#define KVZ_VERSION/ { print $$3 }' global.h) kvazaar.pc: kvazaar.pc.in Makefile sed -e "s;@prefix@;$(PREFIX);" -e "s;@libdir@;$(LIBDIR);" \ -e "s;@VERSION@;$(KVZ_VERSION);" \