From: Andre Noll Date: Sun, 15 Sep 2013 02:23:10 +0000 (+0000) Subject: build: Add Make variable for PACKAGE_TARNAME. X-Git-Tag: v0.5.1~1^2~8 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=9766510180fd598bacaf54b4509ef486155bf584 build: Add Make variable for PACKAGE_TARNAME. This gets rid of two more references to autoconf variables. --- 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