From 43add4b899c45d11dc6667b00747a2d68e2ee5d2 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Mon, 23 Mar 2009 16:47:51 +0100 Subject: [PATCH] fix tarball names generated by Makepkgs Currently Makepkgs generates the source tarball as xfsprogs-version.src.tar.gz, which is not what we used for recent releases and not what most other open source packages do. Change it to xfsprogs-version.tar.gz, and rename the binary tarball to xfsprogs-version.bin.tar.gz Signed-off-by: Christoph Hellwig Reviewed-by: Eric Sandeen --- build/Makefile | 2 +- build/rpm/xfsprogs.spec.in | 2 +- build/tar/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Makefile b/build/Makefile index ec04bed87..200c249db 100644 --- a/build/Makefile +++ b/build/Makefile @@ -6,7 +6,7 @@ TOPDIR = .. include $(TOPDIR)/include/builddefs MANIFEST=src-manifest -SRCTAR=$(PKG_NAME)-$(PKG_VERSION).src.tar.gz +SRCTAR=$(PKG_NAME)-$(PKG_VERSION).tar.gz LDIRT = *-manifest *.gz $(TOPDIR)/$(PKG_NAME)-* diff --git a/build/rpm/xfsprogs.spec.in b/build/rpm/xfsprogs.spec.in index ab773dddc..4ff179dbe 100644 --- a/build/rpm/xfsprogs.spec.in +++ b/build/rpm/xfsprogs.spec.in @@ -6,7 +6,7 @@ Packager: Silicon Graphics, Inc. BuildRoot: @build_root@ Prereq: /sbin/ldconfig Conflicts: xfsdump < 3.0.0 -Source: %name-%version.src.tar.gz +Source: %name-%version.tar.gz License: GPL Vendor: Silicon Graphics, Inc. URL: http://oss.sgi.com/projects/xfs/ diff --git a/build/tar/Makefile b/build/tar/Makefile index 94a3adaa4..b9bf4340f 100644 --- a/build/tar/Makefile +++ b/build/tar/Makefile @@ -5,7 +5,7 @@ TOPDIR = ../.. include $(TOPDIR)/include/builddefs -BINTAR=$(PKG_NAME)-$(PKG_VERSION).tar.gz +BINTAR=$(PKG_NAME)-$(PKG_VERSION).bin.tar.gz LDIRT = *.gz default install install-dev install-lib: -- 2.47.2