diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2009-01-06 13:54:06 +0200 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2009-01-06 13:54:06 +0200 |
commit | 4be4b4f0096f543979204714a7b4d8bd1dcdba67 (patch) | |
tree | 84c2c0dfc471c8a35e6d73ae124b109520d51068 /Makefile | |
parent | 7a8e6db2966acf3ad4294c30701c9eed519bf4c5 (diff) | |
download | vdr-plugin-dxr3-4be4b4f0096f543979204714a7b4d8bd1dcdba67.tar.gz vdr-plugin-dxr3-4be4b4f0096f543979204714a7b4d8bd1dcdba67.tar.bz2 |
CVS -> git, yay
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -37,7 +37,7 @@ APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDI ### The name of the distribution archive: ARCHIVE = $(PLUGIN)-$(VERSION) -PACKAGE = $(shell echo vdr-$(ARCHIVE) | sed -e 's/cvs$$/cvs'`date +%Y%m%d`/) +PACKAGE = $(shell echo vdr-$(ARCHIVE) | sed -e 's/git$$/git'`date +%Y%m%d`/) ### Includes and Defines (add further entries here): @@ -117,7 +117,8 @@ dist: clean @mkdir $(TMPDIR)/$(ARCHIVE) @cp -a * $(TMPDIR)/$(ARCHIVE) @tar czf $(PACKAGE).tgz -C $(TMPDIR) \ - --owner=root --group=root --exclude CVS $(ARCHIVE) + --owner=root --group=root --exclude .git --exclude .gitignore \ + $(ARCHIVE) @-rm -rf $(TMPDIR)/$(ARCHIVE) @echo Distribution package created as $(PACKAGE).tgz |