diff options
author | Tim Landscheidt <tim@tim-landscheidt.de> | 2019-01-25 12:04:08 -0300 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2019-01-25 12:04:37 -0300 |
commit | d967c3485d09687586527ff206cc2401f099a3d4 (patch) | |
tree | d5e0f9fd5faaa1911f695b222f8585c40f48883c /acprep | |
parent | 3d860ffc5b9be8887abd12c6d3ebc34fc5dcac05 (diff) | |
download | ledger-d967c3485d09687586527ff206cc2401f099a3d4.tar.gz ledger-d967c3485d09687586527ff206cc2401f099a3d4.tar.bz2 ledger-d967c3485d09687586527ff206cc2401f099a3d4.zip |
Add tzdata to build dependencies for Ubuntu
The test suite uses the symbolic time zone name "America/Chicago".
To resolve that, the tzdata package needs to be installed. This
fixes #1739.
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -62,7 +62,8 @@ class BoostInfo(object): if system in ['centos']: return [ 'boost-devel' ] - elif system in ['ubuntu-bionic', 'ubuntu-xenial', 'ubuntu-trusty']: + elif system in ['ubuntu-bionic', 'ubuntu-xenial', + 'ubuntu-trusty', 'ubuntu-cosmic']: return [ 'libboost-dev', 'libboost-date-time-dev', 'libboost-filesystem-dev', @@ -70,7 +71,8 @@ class BoostInfo(object): 'libboost-python-dev', 'libboost-regex-dev', 'libboost-system-dev', - 'libboost-test-dev' ] + 'libboost-test-dev', + 'tzdata' ] elif system in [ 'ubuntu-saucy', 'ubuntu-precise']: return [ 'autopoint', |