shell cat archivefilename

This commit is contained in:
Trevor Batley 2023-06-14 16:12:14 +10:00
parent efc2960664
commit 4b99139307

View File

@ -96,7 +96,7 @@ EXT := $(shell cat $(NAME).spec | grep -e '^[S|s]ource' | head -n 1 | sed 's/Sou
ifeq (,$(wildcard archivefilename)) ifeq (,$(wildcard archivefilename))
ARCHIVEFILE := "$(NAME)-$(VERSION).tar.gz" ARCHIVEFILE := "$(NAME)-$(VERSION).tar.gz"
else else
ARCHIVEFILE := $(cat archivefilename) ARCHIVEFILE := $(shell cat archivefilename)
endif endif
# default target: just make sure we've got the sources # default target: just make sure we've got the sources