From 84e1f5a68962e35f796fbfddacddd6d16a4532b6 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Wed, 1 Sep 2010 13:37:01 -0500 Subject: package_rpm: Start packaging directories Match ipkg behavior and unconditionally include directories in the packages Signed-off-by: Mark Hatle --- meta/classes/package_rpm.bbclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'meta') diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass index 3f0a8af72c..a5225dd809 100644 --- a/meta/classes/package_rpm.bbclass +++ b/meta/classes/package_rpm.bbclass @@ -109,8 +109,9 @@ python write_specfile () { import os for rootpath, dirs, files in os.walk(walkpath): path = rootpath.replace(walkpath, "") - #for dir in dirs: - # target.append("%dir " + path + "/" + dir) + for dir in dirs: + # All packages own the directories their files are in... + target.append("%dir " + path + "/" + dir) for file in files: if conffiles.count(path + "/" + file): target.append("%config " + path + "/" + file) -- cgit 1.2.3-korg