diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-05-18 23:41:29 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-05-18 23:41:29 (GMT) |
commit | f21c313fdfd9237a77a6c8ae52949ad6068e3930 (patch) | |
tree | 0e4b3d6e2b845ab2fcb7ffbdfeccb92e2358aa40 | |
parent | add611caeebe4c504652f99895c30846af239339 (diff) |
Fixed the computing of the revision number.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@158 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | revision.h | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,6 +1,11 @@ 10-05-19 Cyrille Bagard <nocbos@gmail.com> * Makefile.am: + Fix the computing. + +10-05-19 Cyrille Bagard <nocbos@gmail.com> + + * Makefile.am: Compute the revision number based on SVN. * pixmaps/Makefile.am: diff --git a/Makefile.am b/Makefile.am index 13a6314..0bee3b5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,9 +5,9 @@ BUILT_SOURCES = revision.h @[ -d $@ ] || touch $@ revision.h: .svn - @nb=`svn log . -l 1 -q | grep r | cut -d ' ' -f 1 | tr -d 'r'` ; \ + @nb=`svn log ChangeLog -l 1 -q | grep r | cut -d ' ' -f 1 | tr -d 'r'` ; \ sed -i "s/#define REVISION .*$$/#define REVISION $$nb/" $@ ; \ - [ -f $< ] && rm $< + [ -f $< ] && rm $< || true EXTRA_DIST = config.rpath config.rpath config.rpath config.rpath ChangeLog @@ -25,7 +25,7 @@ #define _DIALOGS_REVISION_H -#define REVISION 156 +#define REVISION 157 #endif /* _DIALOGS_REVISION_H */ |