diff options
| author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2019-09-19 18:35:20 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-19 20:30:35 +0100 |
| commit | 7e7cce5f36f5ff5e699781c3ae3b51b6139ba2c6 (patch) | |
| tree | 838e9397a11723a9d9bd46e39d4ffda425a0f311 | |
| parent | 62c67d0c0d8913871ee169578e05a6b14a51901d (diff) | |
| download | poky-7e7cce5f36f5ff5e699781c3ae3b51b6139ba2c6.tar.gz | |
tzdata: Correct the packaging of /etc/localtime and /etc/timezone
During restructuring of the packaging in 2af4d6eb (tzdata: Install
everything by default), these two files remained in the tzdata
package, which is supposed to be empty. Move them to tzdata-core where
they belong.
Also simplify the definition of CONFFILES_tzdata-core. As its value
only takes effect for files that actually exist, there is no need to
complicate its definition by checking if a file is created before
adding it to the list of configuration files.
(From OE-Core rev: 3d2d31fed64169f08c0ecfce4c07b8c7ebd052d2)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-extended/timezone/tzdata.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-extended/timezone/tzdata.bb b/meta/recipes-extended/timezone/tzdata.bb index 82fe369baa..1e2d9bd1b9 100644 --- a/meta/recipes-extended/timezone/tzdata.bb +++ b/meta/recipes-extended/timezone/tzdata.bb | |||
| @@ -147,6 +147,8 @@ FILES_tzdata-misc += "${datadir}/zoneinfo/Cuba \ | |||
| 147 | RPROVIDES_tzdata-misc = "tzdata-misc" | 147 | RPROVIDES_tzdata-misc = "tzdata-misc" |
| 148 | 148 | ||
| 149 | FILES_tzdata-core += " \ | 149 | FILES_tzdata-core += " \ |
| 150 | ${sysconfdir}/localtime \ | ||
| 151 | ${sysconfdir}/timezone \ | ||
| 150 | ${datadir}/zoneinfo/Pacific/Honolulu \ | 152 | ${datadir}/zoneinfo/Pacific/Honolulu \ |
| 151 | ${datadir}/zoneinfo/America/Anchorage \ | 153 | ${datadir}/zoneinfo/America/Anchorage \ |
| 152 | ${datadir}/zoneinfo/America/Los_Angeles \ | 154 | ${datadir}/zoneinfo/America/Los_Angeles \ |
| @@ -202,8 +204,7 @@ FILES_tzdata-core += " \ | |||
| 202 | ${datadir}/zoneinfo/iso3166.tab \ | 204 | ${datadir}/zoneinfo/iso3166.tab \ |
| 203 | ${datadir}/zoneinfo/Etc/*" | 205 | ${datadir}/zoneinfo/Etc/*" |
| 204 | 206 | ||
| 205 | CONFFILES_tzdata-core += "${@ "${sysconfdir}/timezone" if bb.utils.to_boolean(d.getVar('INSTALL_TIMEZONE_FILE')) else "" }" | 207 | CONFFILES_tzdata-core = "${sysconfdir}/localtime ${sysconfdir}/timezone" |
| 206 | CONFFILES_tzdata-core += "${sysconfdir}/localtime" | ||
| 207 | 208 | ||
| 208 | ALLOW_EMPTY_${PN} = "1" | 209 | ALLOW_EMPTY_${PN} = "1" |
| 209 | RDEPENDS_${PN} = "${TZ_PACKAGES}" | 210 | RDEPENDS_${PN} = "${TZ_PACKAGES}" |
