From 7f9577ed2d06910c2c052920405105afe340bb9a Mon Sep 17 00:00:00 2001 From: ewt Date: Tue, 20 Feb 1996 21:54:07 +0000 Subject: [PATCH] added INSTALL_UPGRADE flag CVS patchset: 367 CVS date: 1996/02/20 21:54:07 --- lib/rpmlib.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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) -- 2.7.4