diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-01 15:13:45 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-01 15:13:45 +0200 |
commit | 4a70370c410fa0dcc10206d725554e29443aee44 (patch) | |
tree | 3c91ede23c5e937ca9d0cc4ad36dc58590b688b3 /Makefile | |
parent | 805e53c44d3039398b826aab10915f2c500de86e (diff) | |
download | bootloader-theme-4a70370c410fa0dcc10206d725554e29443aee44.tar bootloader-theme-4a70370c410fa0dcc10206d725554e29443aee44.tar.gz bootloader-theme-4a70370c410fa0dcc10206d725554e29443aee44.tar.bz2 bootloader-theme-4a70370c410fa0dcc10206d725554e29443aee44.tar.xz bootloader-theme-4a70370c410fa0dcc10206d725554e29443aee44.zip |
kill SVN leftovers
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 1 insertions, 16 deletions
@@ -86,21 +86,6 @@ VERSION = $(UPSTREAM_VERSION).3 dist: rm -rf ../$(NAME)-$(VERSION).tar* - @if [ -e ".svn" ]; then \ - $(MAKE) dist-svn; \ - elif [ -e ".git" ]; then \ - $(MAKE) dist-git; \ - else \ - echo "Unknown SCM (not SVN nor GIT)";\ - exit 1; \ - fi; + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | lzma >../$(NAME)-$(VERSION).tar.lzma; $(info $(NAME)-$(VERSION).tar.lzma is ready) -dist-svn: - rm -rf $(NAME)-$(VERSION) - svn export -q -rBASE . $(NAME)-$(VERSION) - tar cfY ../$(NAME)-$(VERSION).tar.lzma $(NAME)-$(VERSION) - rm -rf $(NAME)-$(VERSION) - -dist-git: - @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | lzma >../$(NAME)-$(VERSION).tar.lzma; |