summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-11-08 15:18:57 -0500
committerChris Lumens <clumens@redhat.com>2007-11-08 15:18:57 -0500
commit3bbc937c6a41ccdb5f2f67434e0cb89f2fbe06fa (patch)
treeec781815ea80c561b5b562d1d04edbe8b0ebad78 /Makefile
parent13b79912e4185e2caad102e61cfde2792cb4678e (diff)
downloadanaconda-3bbc937c6a41ccdb5f2f67434e0cb89f2fbe06fa.tar.gz
anaconda-3bbc937c6a41ccdb5f2f67434e0cb89f2fbe06fa.tar.xz
anaconda-3bbc937c6a41ccdb5f2f67434e0cb89f2fbe06fa.zip
Add the ChangeLog to the tarball as well.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5a1d6f674..1bf6f8b71 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ depend:
for d in $(SUBDIRS); do make -C $$d depend; done
clean:
- rm -f *.o *.so *.pyc lang-names mini-wm
+ rm -f *.o *.so *.pyc lang-names mini-wm ChangeLog
for d in $(SUBDIRS); do make -C $$d clean; done
subdirs:
@@ -90,13 +90,13 @@ 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: ChangeLog tag
@rm -f ChangeLog docs/kickstart-docs.txt docs/command-line.txt
- @make ChangeLog
@make -C docs kickstart-docs.txt command-line.txt
@git-archive --format=tar --prefix=anaconda-$(VERSION)/ HEAD > anaconda-$(VERSION).tar
@mkdir -p anaconda-$(VERSION)/docs/
@cp docs/kickstart-docs.txt docs/command-line.txt anaconda-$(VERSION)/docs/
+ @cp ChangeLog anaconda-$(VERSION)/
@tar --append -f anaconda-$(VERSION).tar anaconda-$(VERSION)
@bzip2 -f anaconda-$(VERSION).tar
@rm -rf anaconda-$(VERSION)