diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-05-28 20:07:26 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-05-28 20:07:26 +0200 |
commit | 2151ab42123c1f0987c42803745bdf860fba5b15 (patch) | |
tree | 9916e413e2cfa2aa84a21a64d3c1cfde9e9a538a /Makefile | |
parent | 1aca15330b4b3ed7e06ca3854490cbf2857f4783 (diff) | |
download | control-center-2151ab42123c1f0987c42803745bdf860fba5b15.tar control-center-2151ab42123c1f0987c42803745bdf860fba5b15.tar.gz control-center-2151ab42123c1f0987c42803745bdf860fba5b15.tar.bz2 control-center-2151ab42123c1f0987c42803745bdf860fba5b15.tar.xz control-center-2151ab42123c1f0987c42803745bdf860fba5b15.zip |
Rename make dist archive to control-center-version.tar.xz
This makes it the same as the gitweb snapshot URL we now use directly
in the drakconf package.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,6 @@ VERSION = 13.7 NAME = drakconf +GITNAME = control-center SUBDIRS = po pixmaps polkit #data localedir = $(DESTDIR)/usr/share/locale mcc_dir = $(DESTDIR)/usr/share/mcc @@ -44,6 +45,6 @@ install: all dis: dist dist: - rm -rf $(NAME)-$(VERSION).tar* - @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz; - $(info $(NAME)-$(VERSION).tar.xz is ready) + rm -rf $(GITNAME)-$(VERSION).tar* + @git archive --prefix=$(GITNAME)-$(VERSION)/ HEAD | xz > $(GITNAME)-$(VERSION).tar.xz; + $(info $(GITNAME)-$(VERSION).tar.xz is ready) |