summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-28 05:57:45 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-28 05:57:45 +0000
commit706c7fa0f6a2f66e70f756e21ec06f20bbd7a387 (patch)
treec3248943bbb91c828146da736eacf8646d85b72a /Makefile
parent10788f0e2cb8e6eb77b0f0282dfa0d3a65c56abd (diff)
downloadanaconda-706c7fa0f6a2f66e70f756e21ec06f20bbd7a387.tar.gz
anaconda-706c7fa0f6a2f66e70f756e21ec06f20bbd7a387.tar.xz
anaconda-706c7fa0f6a2f66e70f756e21ec06f20bbd7a387.zip
bump revisionanaconda-7.3.92-2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f61ab9c28..0a4be6ee1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
include Makefile.inc
VERSION = 7.3.92
-RELEASE = 0
+RELEASE = 2
SNAPRELEASE = $(RELEASE)$(shell date "+.%Y%m%d%H%M")
ifneq (ia64, $(ARCH))
@@ -118,3 +118,14 @@ pycheck:
pycheck-file:
PYTHONPATH=.:isys:balkan:textw:iw:installclasses:gnome-map:iconvmodule:booty:booty/edd pychecker $(CHECK) | grep -v "__init__() not called"
+
+PKGNAME=anaconda
+local:
+ @rm -rf ${PKGNAME}-$(VERSION).tar.gz
+ @rm -rf /tmp/${PKGNAME}-$(VERSION) /tmp/${PKGNAME}
+ @dir=$$PWD; cd /tmp; cp -a $$dir ${PKGNAME}
+ @mv /tmp/${PKGNAME} /tmp/${PKGNAME}-$(VERSION)
+ @dir=$$PWD; cd /tmp; tar --bzip2 -cvf $$dir/${PKGNAME}-$(VERSION).tar.bz2 ${PKGNAME}-$(VERSION)
+ @rm -rf /tmp/${PKGNAME}-$(VERSION)
+ @echo "The archive is in ${PKGNAME}-$(VERSION).tar.bz2"
+