From e6be2b229c30355e31edc0cfcffc4b51f6c76da7 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Dec 2024 09:19:59 -0500 Subject: [PATCH] bin/xbps-create: ignore provides file will soon be used by xbps-src --- bin/xbps-create/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/xbps-create/main.c b/bin/xbps-create/main.c index b187b22df..d3a5eada2 100644 --- a/bin/xbps-create/main.c +++ b/bin/xbps-create/main.c @@ -371,6 +371,7 @@ ftw_cb(const char *fpath, const struct stat *sb, const struct dirent *dir UNUSED (strcmp(fpath, "./files.plist") == 0) || (strcmp(fpath, "./flist") == 0) || (strcmp(fpath, "./rdeps") == 0) || + (strcmp(fpath, "./provides") == 0) || (strcmp(fpath, "./shlib-provides") == 0) || (strcmp(fpath, "./shlib-requires") == 0)) return 0;