Skip to content
Snippets Groups Projects
Commit e1acd47f authored by Benedikt Meurer's avatar Benedikt Meurer
Browse files

2005-06-08 Benedikt Meurer <benny@xfce.org>

	* autogen.sh, configure.in.in: Add build number to the version during
	  development.




(Old svn revision: 16324)
parent f91b3b16
No related branches found
No related tags found
No related merge requests found
2005-06-08 Benedikt Meurer <benny@xfce.org>
* autogen.sh, configure.in.in: Add build number to the version during
development.
2005-06-08 Benedikt Meurer <benny@xfce.org>
* docs/design/overview.xmi: All navigational UI elements in a
......
......@@ -18,8 +18,10 @@ EOF
exit 1
}
# substitute date
sed "s/@DATE@/`date +%Y%m%d`/g" < "configure.in.in" > "configure.in"
# substitute revision and date
revision=`svn info autogen.sh|awk '/^Revision: / {printf "%04d\n", $2}'`
sed -e "s/@DATE@/`date +%Y%m%d`/g" -e "s/@REVISION@/${revision}/g" \
< "configure.in.in" > "configure.in"
exec xdt-autogen $@
......
......@@ -10,9 +10,10 @@ dnl Version information
m4_define([thunar_version_major], [0])
m4_define([thunar_version_minor], [0])
m4_define([thunar_version_micro], [2])
m4_define([thunar_version_build], [@REVISION@])
m4_define([thunar_version_tag], [svn])
m4_define([thunar_version_date], [@DATE@])
m4_define([thunar_version], [thunar_version_major().thunar_version_minor().thunar_version_micro()thunar_version_tag()-thunar_version_date()])
m4_define([thunar_version], [thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_build(), [], [], [.thunar_version_build()])thunar_version_tag()-thunar_version_date()])
dnl Initialize autoconf
AC_COPYRIGHT([Copyright (c) 2004-2005
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment