From 74bba6ec9d0027e7a7365f5a09ec7c87d6aca613 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 12 May 2020 11:11:28 +0200 Subject: [PATCH] name tar file after full version number --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ea402a75d..bc54193a3 100644 --- a/Makefile +++ b/Makefile @@ -29,5 +29,5 @@ UNINSTALL_DIRS += $(INSTALL_LOCATION)/src copysrc: tar cf - --exclude=CVS --exclude=O.* src | tar xf - -C $(INSTALL_LOCATION) -tar: install copysrc - tar cfjP epics_base-3.14.12.tar.bz2 $(INSTALL_LOCATION) --exclude=*.o +tar: + tar cfjP epics_base-$(EPICS_VERSION_NUMBER).tar.bz2 $(INSTALL_LOCATION) --exclude=*.o