aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-02 13:36:35 +0000
committerlloyd <[email protected]>2009-07-02 13:36:35 +0000
commit90dfb3ea86a76491bd7137d111e10a091ec00267 (patch)
tree6c661ebb585d56eb375c0c824fb8524fd4b06161 /src/build-data
parente3ca26266c2f5a684bbac6258603aaa10133c46a (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.in6
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 #