summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2015-05-01 15:13:45 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-05-01 15:13:45 +0200
commit4a70370c410fa0dcc10206d725554e29443aee44 (patch)
tree3c91ede23c5e937ca9d0cc4ad36dc58590b688b3
parent805e53c44d3039398b826aab10915f2c500de86e (diff)
downloadbootloader-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
-rw-r--r--Makefile17
1 files changed, 1 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 585249c..2bfbe16 100644
--- a/Makefile
+++ b/Makefile
@@ -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;