diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-09-21 09:58:46 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-09-21 09:58:46 +0300 |
commit | 91a2f856c8c428993d80e1fe24ae9656dc5596a1 (patch) | |
tree | 55b782f8eadba6eea628e3220e4bfe8bde95d667 /build | |
parent | 97f6e790bbea6154fda27fcd733f1e2c8812f0c5 (diff) | |
download | rpm-91a2f856c8c428993d80e1fe24ae9656dc5596a1.tar.gz rpm-91a2f856c8c428993d80e1fe24ae9656dc5596a1.tar.bz2 rpm-91a2f856c8c428993d80e1fe24ae9656dc5596a1.zip |
Remove unused proof-of-concept arch-filtering of dependencies
Diffstat (limited to 'build')
-rw-r--r-- | build/rpmfc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rpmfc.c b/build/rpmfc.c index 5b33b9169..06f914a7e 100644 --- a/build/rpmfc.c +++ b/build/rpmfc.c @@ -1363,7 +1363,7 @@ static void printDeps(Header h) { DepMsg_t dm; rpmds ds = NULL; - int flags = 0x2; /* XXX no filtering, !scareMem */ + int flags = 0; /* XXX !scareMem */ const char * DNEVR; int_32 Flags; int bingo = 0; @@ -1482,7 +1482,7 @@ int rpmfcGenerateDepends(const Spec spec, Package pkg) rpmfi fi = pkg->cpioList; rpmfc fc = NULL; rpmds ds; - int flags = 0x2; /* XXX no filtering, !scareMem */ + int flags = 0; /* XXX !scareMem */ ARGV_t av; int_16 * fmode; int ac = rpmfiFC(fi); |