diff options
author | Raul Cuza <raulcuza@gmail.com> | 2011-07-07 10:24:09 -0400 |
---|---|---|
committer | Raul Cuza <raulcuza@gmail.com> | 2011-07-07 10:25:28 -0400 |
commit | ddbaad0ea618ce3bfd92db2cedc25ccc75a10f13 (patch) | |
tree | a81f11e533ab15bef0802beedcc40d01213e3d97 /osx/Makefile | |
parent | 32ed613f486bc379d9c5edbab79c181eb87d1ee6 (diff) | |
download | bcfg2-ddbaad0ea618ce3bfd92db2cedc25ccc75a10f13.tar.gz bcfg2-ddbaad0ea618ce3bfd92db2cedc25ccc75a10f13.tar.bz2 bcfg2-ddbaad0ea618ce3bfd92db2cedc25ccc75a10f13.zip |
Add verification that version_info['micro'] is a single digit.
Because of restrictions in Mac OS X packaging, Bcfg2's
Micro and Minor version numbers must be combined into an
integer in the OS X package (IFMinorVersion attribute).
In order for this to work, the micro version must be an
integer, otherwise we'll run into cases where theĀ·
IFMinorVersion will not be in sequence with the Bcfg2
Micro and Minor versions.
Diffstat (limited to 'osx/Makefile')
-rw-r--r-- | osx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/osx/Makefile b/osx/Makefile index 4bca85582..de2d75402 100644 --- a/osx/Makefile +++ b/osx/Makefile @@ -31,7 +31,7 @@ SITELIBDIR = /Library/Python/${PYVERSION}/site-packages # integers (e.g. "1" and "00" for bcfg2 version 1.0.0. BCFGVER = 1.2.0pre3 MAJOR = 1 -MINOR = 2.0 +MINOR = 20 default: clean client |