From 9766510180fd598bacaf54b4509ef486155bf584 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 15 Sep 2013 02:23:10 +0000 Subject: [PATCH] build: Add Make variable for PACKAGE_TARNAME. This gets rid of two more references to autoconf variables. --- Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 93aae7ce..2625127f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,6 +4,7 @@ exec_prefix := @exec_prefix@ BINDIR := @bindir@ VARDIR := /var/paraslash MANDIR := @datarootdir@/man/man1 +PACKAGE_TARNAME := @PACKAGE_TARNAME@ PACKAGE_VERSION := @PACKAGE_VERSION@ INSTALL := @install@ STRIP := $(CROSS_COMPILE)strip @@ -144,10 +145,10 @@ LDFLAGS += @clock_gettime_ldflags@ man_pages := $(patsubst %, $(man_dir)/%.1, $(prefixed_executables)) autocrap := config.h.in configure -tarball_pfx := @PACKAGE_TARNAME@-$(PACKAGE_VERSION) +tarball_pfx := $(PACKAGE_TARNAME)-$(PACKAGE_VERSION) tarball_delete := $(addprefix $(tarball_pfx)/,\ web .changelog_before_cvs .changelog_cvs .gitignore) -tarball := @PACKAGE_TARNAME@-$(PACKAGE_VERSION).tar.bz2 +tarball := $(tarball_pfx).tar.bz2 # To put more focus on warnings, be less verbose as default # Use 'make V=1' to see the full commands -- 2.39.2