mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Check for version directory when making export
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@25983 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d19bbbb590
commit
0167c6961b
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-01-19 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Master/source-distribution.make: Check for version directory
|
||||
when making export.
|
||||
|
||||
2008-01-17 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* GNUmakefile.in (install): Install app-wrapper.template,
|
||||
|
|
|
@ -225,8 +225,8 @@ svn-snapshot: internal-svn-export
|
|||
|
||||
internal-svn-export:
|
||||
$(ECHO_NOTHING)echo "Exporting from module $(SVN_MODULE_NAME) on SVN..."; \
|
||||
if [ -e $(SVN_MODULE_NAME) ]; then \
|
||||
echo "*Error* cannot export: $(SVN_MODULE_NAME) already exists"; \
|
||||
if [ -e $(VERSION_NAME) ]; then \
|
||||
echo "*Error* cannot export: $(VERSION_NAME) already exists"; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
$(SVN) export $(SVN_BASE_URL)/$(SVN_MODULE_NAME)/$(EXPORT_SVN_NAME) $(VERSION_NAME); \
|
||||
|
|
Loading…
Reference in a new issue