diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-05-09 03:41:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:05:45 -0500 |
commit | 7947d4c425e72fea9acfe68bd9d6e28011dc0065 (patch) | |
tree | e0f8a524a7dfd9df008297a9a2ec61cef5c67d7e /source4/script | |
parent | bfff6b0e640b3b3456ec1d9d26da0bd80a08585f (diff) | |
download | samba-7947d4c425e72fea9acfe68bd9d6e28011dc0065.tar.gz samba-7947d4c425e72fea9acfe68bd9d6e28011dc0065.tar.bz2 samba-7947d4c425e72fea9acfe68bd9d6e28011dc0065.zip |
r15517: fixed the segv in provision. The problem was that SAMBA_VERSION_STRING
was defined recursively as the mkversion.sh script was putting the new
version in the wrong spot
(This used to be commit 962afd362cd5612ef6b527b24c8f80c98eafe984)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/mkversion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/mkversion.sh b/source4/script/mkversion.sh index 908aae8a3d..c4a6b7c161 100755 --- a/source4/script/mkversion.sh +++ b/source4/script/mkversion.sh @@ -8,7 +8,7 @@ if test -z "$VERSION_FILE";then fi if test -z "$OUTPUT_FILE";then - OUTPUT_FILE="version.h" + OUTPUT_FILE="include/version.h" fi SOURCE_DIR=$3 |