From 9546dbfa421c3759585485351cc9777d50f1b5df Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Fri, 14 Jul 2023 16:51:02 +1000 Subject: [PATCH] handle optional braces in ARCHIVEFILE --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index dc78be3..05b4752 100644 --- a/Makefile.common +++ b/Makefile.common @@ -98,7 +98,7 @@ EXT := $(shell cat $(NAME).spec | grep -e '^[S|s]ource' | head -n 1 | sed 's/Sou #else #ARCHIVEFILE := $(shell cat archivefilename) #endif -ARCHIVEFILE := $(shell cat $(NAME).spec | grep -e '^[S|s]ource' | sed -r 's/^[S|s]ource[0-9]?:\s?//' | sed -e "s/%{name}/$(NAME)/" -e "s/%{version}/$(VERSION)/" | xargs basename) +ARCHIVEFILE := $(shell cat $(NAME).spec | grep -e '^[S|s]ource' | sed -r 's/^[S|s]ource[0-9]?:\s?//' | sed -e 's/{//g' -e 's/}//g' -e "s/%name/$(NAME)/" -e "s/%version/$(VERSION)/" | xargs basename) # default target: just make sure we've got the sources all: sources