diff options
author | lloyd <[email protected]> | 2009-07-02 13:36:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-02 13:36:35 +0000 |
commit | 90dfb3ea86a76491bd7137d111e10a091ec00267 (patch) | |
tree | 6c661ebb585d56eb375c0c824fb8524fd4b06161 /src/build-data | |
parent | e3ca26266c2f5a684bbac6258603aaa10133c46a (diff) |
Use just %{version} instead of combining sub-parts needlessly in nmake.in
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/makefile/nmake.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/build-data/makefile/nmake.in b/src/build-data/makefile/nmake.in index fb9ab1542..34c864e93 100644 --- a/src/build-data/makefile/nmake.in +++ b/src/build-data/makefile/nmake.in @@ -12,11 +12,7 @@ LINK_TO = %{link_to} ################################################## # Version Numbers # ################################################## -MAJOR = %{version_major} -MINOR = %{version_minor} -PATCH = %{version_patch} - -VERSION = $(MAJOR).$(MINOR).$(PATCH) +VERSION = %{version} ################################################## # Installation Settings # |