diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2012-06-04 08:46:17 -0600 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2012-06-04 08:46:17 -0600 |
commit | 0f24d9325659742da8b829fbd5b82ba0cec169da (patch) | |
tree | 2eb54bd1a88492acb462cd1553ad643891cecb15 /bootstrap | |
parent | c13889618d0ad921e4e6ab07a0aae1560e8ac988 (diff) |
Move to major.minor.patch release version; add OTP build version
version info
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24,12 +24,16 @@ main(Args) -> false -> undefined end, + %% Extract the system info of the version of OTP we use to compile rebar + OtpInfo = string:strip(erlang:system_info(otp_release), both, $\n), + %% Compile all src/*.erl to ebin case make:files(filelib:wildcard("src/*.erl"), [{outdir, "ebin"}, {i, "include"}, DebugFlag, {d, 'BUILD_TIME', Built}, - {d, 'VCS_INFO', VcsInfo}]) of + {d, 'VCS_INFO', VcsInfo}, + {d, 'OTP_INFO', OtpInfo}]) of up_to_date -> ok; error -> |