Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-08-30 14:37:43 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-08-30 14:37:43 (GMT)
commitabcc613c7c0b72a41be801c6e4cf7ae1b8c48c09 (patch)
treee6d6b3f2c2b659bb5916495968afb0cbfe3ffbfe
parent261c13a25f9e965c2d8aaea37d8296155539fa9c (diff)
parent52a32120b3f986a075245078de8aeb79e3846660 (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/projects/presence-service
-rw-r--r--NEWS2
-rwxr-xr-xmaint-helper.py6
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index cef40c2..6ee5f6f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+Snapshot 1c58a0be88
+
* Update LinkLocal plugin's protocol to "local-xmpp"
Snapshot 970ca27db7
diff --git a/maint-helper.py b/maint-helper.py
index 8c64ca2..e1bbe22 100755
--- a/maint-helper.py
+++ b/maint-helper.py
@@ -16,6 +16,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+# Latest source available at git://dev.laptop.org/sugar
+
import os
import sys
import re
@@ -64,7 +66,9 @@ def cmd_build_snapshot():
print 'Build %s...' % tarball
- os.spawnlp(os.P_WAIT, 'make', 'make', 'distcheck')
+ retcode = subprocess.call(['make', 'distcheck'])
+ if retcode:
+ sys.exit(0)
os.rename('%s-%s.tar.bz2' % (name, version), tarball)