diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-18 05:48:16 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-18 05:48:16 +0000 |
commit | f135fa1df2395f26fd6613e8b3056d7751ac7f97 (patch) | |
tree | 99d1dd2b9388ba90342fd8e07f7ee94b2837346c /findpackageset.py | |
parent | 20b559b50ffa4f29446eb8b6c32ca764bd762ad0 (diff) | |
download | anaconda-f135fa1df2395f26fd6613e8b3056d7751ac7f97.tar.gz anaconda-f135fa1df2395f26fd6613e8b3056d7751ac7f97.tar.xz anaconda-f135fa1df2395f26fd6613e8b3056d7751ac7f97.zip |
make it so we don't try to use cdb for opening the rpmdb here too
Diffstat (limited to 'findpackageset.py')
-rw-r--r-- | findpackageset.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/findpackageset.py b/findpackageset.py index 2444f2f2d..d3576160b 100644 --- a/findpackageset.py +++ b/findpackageset.py @@ -1,5 +1,11 @@ import rpm + +# set DB_PRIVATE to make rpm happy... do it in here since we include +# this with all of the useful rpm bits +rpm.addMacro("__dbi_cdb", "create private") + + def dEBUG(str): print str |