diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2006-11-20 22:40:07 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2006-11-20 22:40:07 +0100 |
commit | 10135f2e15055e04406343d4836af9b84fd94e4f (patch) | |
tree | 459cddcb8d00423eea1200cffaf055b5a0c27b74 /Makefile | |
parent | b7536a4f575cfb21b174c6beb627dc0f94963d91 (diff) |
Makefile: Replace deprecated call to git-tar-tree
git-archive --format=tar is used now
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,8 +37,8 @@ cscope: cscope -b release: - git-tar-tree HEAD inotail-$(VERSION) | gzip -9v > ../inotail-$(VERSION).tar.gz - git-tar-tree HEAD inotail-$(VERSION) | bzip2 -9v > ../inotail-$(VERSION).tar.bz2 + git-archive --format=tar --prefix=inotail-0.2/ HEAD | gzip -9v > ../inotail-$(VERSION).tar.gz + git-archive --format=tar --prefix=inotail-0.2/ HEAD | bzip2 -9v > ../inotail-$(VERSION).tar.bz2 clean: rm -f inotail *.o cscope.* |