diff options
author | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2006-07-17 17:00:23 +0000 |
---|---|---|
committer | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2006-07-17 17:00:23 +0000 |
commit | cb11a1182cfa598f78269c835b22b9ecf790efa5 (patch) | |
tree | 0a5312c51b788d6e0f80fce3d7470f9176ca4e31 /src/Makefile | |
parent | d59b27c410d8b37b347c89a8ebd5f6ebb959e216 (diff) | |
download | sos-cb11a1182cfa598f78269c835b22b9ecf790efa5.tar.gz |
Fixed archive tagging
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@28 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 9fed99b4..79653d13 100644 --- a/src/Makefile +++ b/src/Makefile @@ -17,13 +17,13 @@ all: @svn copy $(REPO)/trunk/src $(REPO)/tags/$(SVNTAG) \ -m "Tagging the $(SVNTAG) release of the sos project" @echo "$(SVNTAG)" - @svn update $(REPO)/tags + @svn update ../../tags tag-archive: ../../tags/$(SVNTAG) -create-archive: tag-archive +create-archive: tag-archive @rm -rf /tmp/$(NAME) - @svn export $(REPO)/tags/$(SVNTAG)/src /tmp/$(NAME) \ + @svn export $(REPO)/tags/$(SVNTAG) /tmp/$(NAME) \ || echo GRRRrrrrr -- ignore [export aborted] @mv /tmp/$(NAME) /tmp/$(NAME)-$(VERSION) @cd /tmp; tar --bzip2 -cSpf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION) |