xbps-install(1): added -I, --ignore-file-conflicts.
If set it will continue with the transaction and will just print what are the conflicting files without returning EEXIST. This is a temporary solution for void where there are still some packages with conflicting files (qt5-host-tools vs qt5-tools-devel). With input by @duncaen
This commit is contained in:
@ -50,7 +50,7 @@
|
||||
*
|
||||
* This header documents the full API for the XBPS Library.
|
||||
*/
|
||||
#define XBPS_API_VERSION "20190618"
|
||||
#define XBPS_API_VERSION "20190621"
|
||||
|
||||
#ifndef XBPS_VERSION
|
||||
#define XBPS_VERSION "UNSET"
|
||||
@ -209,6 +209,13 @@
|
||||
*/
|
||||
#define XBPS_FLAG_UNPACK_ONLY 0x00001000
|
||||
|
||||
/**
|
||||
* @def XBPS_FLAG_IGNORE_FILE_CONFLICTS
|
||||
* Continue with transaction even if there are file conflicts.
|
||||
* Must be set through the xbps_handle::flags member.
|
||||
*/
|
||||
#define XBPS_FLAG_IGNORE_FILE_CONFLICTS 0x00002000
|
||||
|
||||
/**
|
||||
* @def XBPS_FETCH_CACHECONN
|
||||
* Default (global) limit of cached connections used in libfetch.
|
||||
|
Reference in New Issue
Block a user