From: ewt Date: Tue, 20 Feb 1996 21:54:07 +0000 (+0000) Subject: added INSTALL_UPGRADE flag X-Git-Tag: rpm-4.4-release~5368 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7f9577ed2d06910c2c052920405105afe340bb9a;p=platform%2Fupstream%2Frpm.git added INSTALL_UPGRADE flag CVS patchset: 367 CVS date: 1996/02/20 21:54:07 --- diff --git a/lib/rpmlib.h b/lib/rpmlib.h index 961f00c..9577d6c 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -68,10 +68,11 @@ #define RPMFILE_CONFIG 1 #define RPMFILE_DOC 2 -#define INSTALL_REPLACEPKG 1 -#define INSTALL_REPLACEFILES 2 -#define INSTALL_TEST 4 -#define INSTALL_PRINTLABEL 8 +#define INSTALL_REPLACEPKG (1 << 0) +#define INSTALL_REPLACEFILES (1 << 1) +#define INSTALL_TEST (1 << 2) +#define INSTALL_PRINTLABEL (1 << 3) +#define INSTALL_UPGRADE (1 << 4) #define VERIFY_NONE 0 #define VERIFY_MD5 (1 << 0)