Commit bbbc1bd6 authored by sumpfralle's avatar sumpfralle

fixed quoting and "svn import" in Makefile


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@201 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent fd720afa
...@@ -4,8 +4,8 @@ SVN_BASE = https://pycam.svn.sourceforge.net/svnroot/pycam ...@@ -4,8 +4,8 @@ SVN_BASE = https://pycam.svn.sourceforge.net/svnroot/pycam
RELEASE_PREFIX = pycam- RELEASE_PREFIX = pycam-
EXPORT_DIR = $(RELEASE_PREFIX)$(VERSION) EXPORT_DIR = $(RELEASE_PREFIX)$(VERSION)
EXPORT_FILE_PREFIX = $(EXPORT_DIR) EXPORT_FILE_PREFIX = $(EXPORT_DIR)
EXPORT_ZIP = "$(EXPORT_FILE_PREFIX).zip" EXPORT_ZIP = $(EXPORT_FILE_PREFIX).zip
EXPORT_TGZ = "$(EXPORT_FILE_PREFIX).tar.gz" EXPORT_TGZ = $(EXPORT_FILE_PREFIX).tar.gz
.PHONY: zip tgz svn_export tag .PHONY: zip tgz svn_export tag
...@@ -28,6 +28,6 @@ tgz: svn_export ...@@ -28,6 +28,6 @@ tgz: svn_export
tag: tag:
svn cp "$(SVN_BASE)/trunk" "$(SVN_BASE)/tags/release-$(VERSION)" -m "tag release $(VERSION)" svn cp "$(SVN_BASE)/trunk" "$(SVN_BASE)/tags/release-$(VERSION)" -m "tag release $(VERSION)"
svn import "$(EXPORT_ZIP)" "$(SVN_BASE)/tags/archives/" -m "added released zip file for version $(VERSION)" svn import "$(EXPORT_ZIP)" "$(SVN_BASE)/tags/archives/$(EXPORT_ZIP)" -m "added released zip file for version $(VERSION)"
svn import "$(EXPORT_TGZ)" "$(SVN_BASE)/tags/archives/" -m "added released tgz file for version $(VERSION)" svn import "$(EXPORT_TGZ)" "$(SVN_BASE)/tags/archives/$(EXPORT_TGZ)" -m "added released tgz file for version $(VERSION)"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment