Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2009-10-14 03:20:11 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2009-10-14 03:20:11 +0400
commit6d92b2148b7e8f436ee88978815281bff40892ac (patch)
tree93d472609f93aab893a0a8243afc040f05b0ddb1 /main/Makefile.am
parente81286fa39461a06901ea7ef4c371944969fb1e0 (diff)
Fix svn revision message when there are no modifications
svn path=/trunk/monodevelop/; revision=144067
Diffstat (limited to 'main/Makefile.am')
-rw-r--r--main/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/Makefile.am b/main/Makefile.am
index 92f406c20d..d5c441c20d 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -17,9 +17,9 @@ gen-vcrevision:
svn st | grep -v ^\? | wc -l; \
); \
if test $$modified != 0; then \
- version="SVN revision: $$version (modified)"; \
+ version="$$version (modified)"; \
fi; \
- echo "$$version" > "vcrevision"; \
+ echo "SVN revision: $$version" > "vcrevision"; \
else \
echo "0" > "vcrevision"; \
fi