added INSTALL_UPGRADE flag
authorewt <devnull@localhost>
Tue, 20 Feb 1996 21:54:07 +0000 (21:54 +0000)
committerewt <devnull@localhost>
Tue, 20 Feb 1996 21:54:07 +0000 (21:54 +0000)
CVS patchset: 367
CVS date: 1996/02/20 21:54:07

lib/rpmlib.h

index 961f00c..9577d6c 100644 (file)
 #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)