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:16:14 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2009-10-14 03:16:14 +0400
commite81286fa39461a06901ea7ef4c371944969fb1e0 (patch)
tree4c85f1769505278a201456b78a2d51e00135ac63 /main/Makefile.am
parenta882645d0ea36052939d1a795b872ffadcbbdaf0 (diff)
Fix svn modification check on Mac sh
svn path=/trunk/monodevelop/; revision=144066
Diffstat (limited to 'main/Makefile.am')
-rw-r--r--main/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile.am b/main/Makefile.am
index df08897637..92f406c20d 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -16,7 +16,7 @@ gen-vcrevision:
LANG=C; export LANG; \
svn st | grep -v ^\? | wc -l; \
); \
- if test "$$modified" != "0"; then \
+ if test $$modified != 0; then \
version="SVN revision: $$version (modified)"; \
fi; \
echo "$$version" > "vcrevision"; \