package_rpm: Start packaging directories

Match ipkg behavior and unconditionally include directories in the packages

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
This commit is contained in:
Mark Hatle 2010-09-01 13:37:01 -05:00 committed by Richard Purdie
parent 9f60a6fbfb
commit 84e1f5a689
1 changed files with 3 additions and 2 deletions

View File

@ -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)