summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2009-01-05 23:15:21 +0100
committerHans de Goede <hdegoede@redhat.com>2009-01-05 23:15:21 +0100
commit64e9b34432abc40eff43a03798db45d757d6ca7d (patch)
treeeeedd95767764ed18393e0240fc08acd62d1e7ea /Makefile
parent2734cf8a8077f7108bb65b3724af075825d6eb44 (diff)
downloadanaconda-64e9b34432abc40eff43a03798db45d757d6ca7d.tar.gz
anaconda-64e9b34432abc40eff43a03798db45d757d6ca7d.tar.xz
anaconda-64e9b34432abc40eff43a03798db45d757d6ca7d.zip
Various packaging fixed from review (#225246)
Various packaging fixed from review (#225246)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5f7a930bf..af327216a 100644
--- a/Makefile
+++ b/Makefile
@@ -108,7 +108,7 @@ tag:
ChangeLog:
(GIT_DIR=.git git log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
-archive: tag
+archive-no-tag:
@rm -f ChangeLog docs/kickstart-docs.txt docs/command-line.txt
@make ChangeLog
@make -C docs kickstart-docs.txt command-line.txt
@@ -120,6 +120,10 @@ archive: tag
@bzip2 -f anaconda-$(VERSION).tar
@rm -rf anaconda-$(VERSION)
+archive:
+ @make tag
+ @make archive-no-tag
+
src: archive
@rpmbuild -ts --nodeps anaconda-$(VERSION).tar.bz2 || exit 1
@rm -f anaconda-$(VERSION).tar.bz2