diff options
author | Gerald Carter <jerry@samba.org> | 2006-01-30 13:32:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:19 -0500 |
commit | 7de55b30b739ac59f22c9e8ed91e36662e5b5b12 (patch) | |
tree | eb3863c1d81937712728bcebe0bd08600d04c825 /source3/script | |
parent | 99fc191d5142ea2d6bcab9beb504d5e90b61742f (diff) | |
download | samba-7de55b30b739ac59f22c9e8ed91e36662e5b5b12.tar.gz samba-7de55b30b739ac59f22c9e8ed91e36662e5b5b12.tar.bz2 samba-7de55b30b739ac59f22c9e8ed91e36662e5b5b12.zip |
r13229: * fix bad comparison caught by the AIX compiler in wbinfo code
* update output from mkversion.sh to include the SAMBA_VENDOR_PATCH
(This used to be commit 485f0370942880a71095da5096e414b28193b150)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/mkversion.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/script/mkversion.sh b/source3/script/mkversion.sh index 1ba7cd6369..5784054921 100755 --- a/source3/script/mkversion.sh +++ b/source3/script/mkversion.sh @@ -102,7 +102,12 @@ echo "#define SAMBA_VERSION_STRING samba_version_string()" >> $OUTPUT_FILE echo "$0: 'include/version.h' created for Samba(\"${SAMBA_VERSION_STRING}\")" if test -n "${SAMBA_VERSION_VENDOR_SUFFIX}";then - echo "$0: with VENDOR_SUFFIX = ${SAMBA_VERSION_VENDOR_SUFFIX}" + echo -n "$0: with VENDOR_SUFFIX = \"" + echo -n ${SAMBA_VERSION_VENDOR_SUFFIX} | sed 's/"//g' + if test -n ${SAMBA_VENDOR_PATCH}; then + echo -n "-${SAMBA_VENDOR_PATCH}" + fi + echo "\"" fi exit 0 |