diff options
author | Tom <tom@stosb.com> | 2010-03-31 13:47:16 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-04-02 09:45:28 +0200 |
commit | b0ab62e6b414f51f7988a074b9e3842c3ecc5e28 (patch) | |
tree | f27fc828cd7b3fb828a681031ab90ea066851703 | |
parent | c2c7abf7240419839acf272551860fcc603d846d (diff) |
shr-settings: Changed the broken use of * in the CONFFILE section. It seems that opkg does not respect *s there. Wrote all the files manually instead.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes/shr/shr-settings_git.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes/shr/shr-settings_git.bb b/recipes/shr/shr-settings_git.bb index 96c16ed4e7..2084be5b9a 100644 --- a/recipes/shr/shr-settings_git.bb +++ b/recipes/shr/shr-settings_git.bb @@ -6,7 +6,7 @@ RDEPENDS = "python-elementary python-dbus python-codecs python-shell python-pyrt SECTION = "x11/application" PE = "1" PV = "0.1.1+gitr${SRCREV}" -PR = "r8" +PR = "r9" inherit setuptools @@ -29,4 +29,8 @@ FILES_${PN} += "${prefix}/share/pixmaps" FILES_${PN} += "${prefix}/share/applications" FILES_${PN}-addons-illume = "${prefix}/share/applications/shr-settings-addons-illume" FILES_${PN}-backup-configuration = "${sysconfdir}/shr-settings/" -CONFFILES_${PN}-backup-configuration = "${sysconfdir}/shr-settings/*" +CONFFILES_${PN}-backup-configuration = "\ + ${sysconfdir}/shr-settings/backup.conf \ + ${sysconfdir}/shr-settings/backup.blacklist \ + ${sysconfdir}/shr-settings/backup.whitelist \ +" |