diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-11-25 15:17:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 15:17:09 +0100 |
commit | 7ee8ea71b7d6e939d8e08d332feee2a27d662155 (patch) | |
tree | 2b55effb2608f58c46daff537e5f0e1bfaae5fdd /configure | |
parent | 8189eb162eeef6a080bee90b6d6bac119ce4739c (diff) | |
parent | 3ad1a0bad2c701e19792618264d01f551c59a1bd (diff) |
Merge pull request #1252 from SaberUK/master+distribution
Fix the distribution label not showing up since b8d85c6251.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -126,7 +126,7 @@ our $interactive = !( defined $opt_uid ); -my %version = get_version(); +my %version = get_version $opt_distribution_label; print_format "<|BOLD Configuring InspIRCd $version{FULL} on $^O.|>\n"; our %config; @@ -188,12 +188,6 @@ if (defined $opt_socketengine) { } } -# If the user has specified a distribution label then we use it in -# place of the label from src/version.sh or Git. -if (defined $opt_distribution_label) { - $version{LABEL} = $opt_distribution_label; -} - if (defined $opt_system) { $config{BASE_DIR} = $opt_prefix // '/var/lib/inspircd'; $config{BINARY_DIR} = $opt_binary_dir // '/usr/sbin'; @@ -310,6 +304,9 @@ if (<src/modules/m_ssl_*.cpp> && prompt_bool $interactive, 'Would you like to ge system './tools/genssl', 'auto'; } +# Cache the distribution label so that its not lost when --update is run. +$config{DISTRIBUTION} = $opt_distribution_label if $opt_distribution_label; + write_configure_cache %config; parse_templates \%config, \%compiler, \%version; |