Removed trailing empty strings from awk script.

This commit is contained in:
Guenter Knauf 2012-07-12 00:07:01 +02:00
parent 0dc1e1e92e
commit 18f8b7eb72
1 changed files with 3 additions and 3 deletions

View File

@ -37,8 +37,8 @@ BEGIN {
else if (match ($0, /^#define LIBCURL_VERSION_PATCH [0-9]+$/))
version_patch = $3
}
print "LIBCURL_VERSION = " version_major "," version_minor "," version_patch ""
print "LIBCURL_VERSION_STR = " version_string ""
print "LIBCURL_COPYRIGHT_STR = " copyright_string ""
print "LIBCURL_VERSION = " version_major "," version_minor "," version_patch
print "LIBCURL_VERSION_STR = " version_string
print "LIBCURL_COPYRIGHT_STR = " copyright_string
}