1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

s3:create-tarball: also include the VENDOR_PATCH in the version

Michael
This commit is contained in:
Michael Adam 2009-01-21 11:45:23 +01:00
parent 65c92fea3d
commit ce3e34d37c

View File

@ -183,6 +183,10 @@ function main
if [ -n "$vendor_version" ]; then
version="$version-$vendor_version"
fi
vendor_patch=`grep "define SAMBA_VERSION_VENDOR_PATCH" $VER_H | awk '{print $3}'`
if [ -n "$vendor_patch" ]; then
version="$version-$vendor_patch"
fi
version=`echo $version | sed 's/\"//g'`
echo "Creating release tarball for Samba $version"