The branch, master, has been updated.

- Log -----------------------------------------------------------------

commit 6f58137318254d7d553af0e6a34fadbfda057f5c
Author: Scott Kostyshak <skost...@lyx.org>
Date:   Tue Sep 11 04:12:05 2012 -0400

    Abort autogen.sh if po/POTFILES.in fails

diff --git a/autogen.sh b/autogen.sh
index a00eebe..b03318f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -85,7 +85,10 @@ else
 fi
 
 echo "Building po/POTFILES.in..."
-make -s -f po/Rules-lyx srcdir=po top_srcdir=. po/POTFILES.in
+if (! make -s -f po/Rules-lyx srcdir=po top_srcdir=. po/POTFILES.in ); then
+       echo "Building po/POTFILES.in failed -- aborting"
+       exit 1
+fi
 
 echo
 echo 'run "./configure && make"'

-----------------------------------------------------------------------

Summary of changes:
 autogen.sh |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
The LyX Source Repository

Reply via email to