diff options
author | Peter Powell <petpow@saberuk.com> | 2019-05-03 15:17:15 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-05-03 15:17:15 +0100 |
commit | 044fa999680888267e07dc7b69028b18efbac818 (patch) | |
tree | d17eac0a8303611a4461fddad75f784134624d30 /configure | |
parent | 68e5d0a151d8b5ca6577a0053dcda95774bf323a (diff) |
Fix --distribution-label erroneously requiring --development.
Reported by @ensra.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -261,7 +261,7 @@ EOW } # Check that the user actually wants this version. -if ($version{LABEL} ne 'release') { +if (defined $version{REAL_LABEL}) { print_warning <<'EOW'; You are building a development version. This contains code which has not been tested as heavily and may contain various faults which could seriously |