mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/gnome-utils/Makefile.am: exit if "svn info" fails.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12008 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
72762ab9c9
commit
d9d3520ea5
@ -1,3 +1,7 @@
|
|||||||
|
2005-11-21 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
|
* src/gnome-utils/Makefile.am: exit if "svn info" fails.
|
||||||
|
|
||||||
2005-11-21 Neil Williams <linux@codehelp.co.uk>
|
2005-11-21 Neil Williams <linux@codehelp.co.uk>
|
||||||
|
|
||||||
Use only qof.h in place of other QOF headers,
|
Use only qof.h in place of other QOF headers,
|
||||||
|
@ -321,6 +321,11 @@ gnc-svninfo.h: .gnc-svninfo.h
|
|||||||
fi ; \
|
fi ; \
|
||||||
if [ -d $$s/.svn ] ; then \
|
if [ -d $$s/.svn ] ; then \
|
||||||
svninfo=`svn info $$s |grep '^Revision: '|sed 's/Revision: //'` ; \
|
svninfo=`svn info $$s |grep '^Revision: '|sed 's/Revision: //'` ; \
|
||||||
|
if [ -z "$$svninfo" ] ; then \
|
||||||
|
echo "svn info failed. figure out why." ; \
|
||||||
|
echo "can't determine svn revision from $$s." ; \
|
||||||
|
exit 1 ; \
|
||||||
|
fi ; \
|
||||||
echo "#define GNUCASH_SVN_REV $$svninfo" > gnc-svninfo.h ; \
|
echo "#define GNUCASH_SVN_REV $$svninfo" > gnc-svninfo.h ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user