diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-04 11:29:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:53 -0500 |
commit | 596eacea722d6b66cf0a7556e20545c77ee0b8e7 (patch) | |
tree | f01ca6035da356d8d20fac80da88642b46a24c4c /source3/configure.in | |
parent | a6f5c88563c2169ce125be4e84f6980714f7e1ff (diff) | |
download | samba-596eacea722d6b66cf0a7556e20545c77ee0b8e7.tar.gz samba-596eacea722d6b66cf0a7556e20545c77ee0b8e7.tar.xz samba-596eacea722d6b66cf0a7556e20545c77ee0b8e7.zip |
r1007: merge from SAMBA_4_0:
print out the SVN revision by configure,
so that the build farm can use it
metze
(This used to be commit 98e6c3105dff65ed0312e8f121a9038b33a4397a)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index e1fc69b4b79..065587640c1 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -11,6 +11,11 @@ AC_ENABLE_SHARED SMB_VERSION_STRING=`cat include/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2` echo "SAMBA VERSION: ${SMB_VERSION_STRING}" +SAMBA_VERSION_SVN_REVISION=`cat include/version.h | grep 'SAMBA_VERSION_SVN_REVISION' | cut -d ' ' -f3-` +if test -n "${SAMBA_VERSION_SVN_REVISION}";then + echo "BUILD REVISION: ${SAMBA_VERSION_SVN_REVISION}" +fi + ################################################# # Directory handling stuff to support both the # legacy SAMBA directories and FHS compliant |