diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-08-03 11:59:12 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-08-03 12:43:59 +0300 |
commit | ecd9aceb565be9b672091cbcb5b2db408dcb1d91 (patch) | |
tree | 1d77c12b455d21faf4a08213f908ffd9aca94542 /lib/rpmds.h | |
parent | 933a3e32dd94c5d54d10c24c55394488824de1f0 (diff) | |
download | rpm-ecd9aceb565be9b672091cbcb5b2db408dcb1d91.tar.gz |
Honor RPMSENSE_MISSINGOK flag in dependency checking
- For now there's no way to set this flag from packages so it doesn't
actually do anything, but it doesn't hurt anything either, allows
Suse & friends to drop one patch (greetings Michael :) and there
are might be some things we could use this for internally.
Diffstat (limited to 'lib/rpmds.h')
-rw-r--r-- | lib/rpmds.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rpmds.h b/lib/rpmds.h index 84f4fbb59..d096b672a 100644 --- a/lib/rpmds.h +++ b/lib/rpmds.h @@ -72,7 +72,8 @@ typedef rpmFlags rpmsenseFlags; RPMSENSE_KEYRING | \ RPMSENSE_PRETRANS | \ RPMSENSE_POSTTRANS | \ - RPMSENSE_PREREQ) + RPMSENSE_PREREQ | \ + RPMSENSE_MISSINGOK) #define _notpre(_x) ((_x) & ~RPMSENSE_PREREQ) #define _INSTALL_ONLY_MASK \ |