Blame SOURCES/201.patch

b3c7ac
From a34a32a9faea832f378f67d5121f430d0b96a925 Mon Sep 17 00:00:00 2001
b3c7ac
From: Aditya R <arajan@redhat.com>
b3c7ac
Date: Tue, 23 Aug 2022 22:23:48 +0530
b3c7ac
Subject: [PATCH] makefile: remove windows specific libaries from vendor
b3c7ac
b3c7ac
Modify `vendor-rm-windows` to remove windows specific libaries from
b3c7ac
vendor directory
b3c7ac
b3c7ac
Signed-off-by: Aditya R <arajan@redhat.com>
b3c7ac
---
b3c7ac
 Makefile | 2 ++
b3c7ac
 1 file changed, 2 insertions(+)
b3c7ac
b3c7ac
diff --git a/Makefile b/Makefile
b3c7ac
index 411203a..75ba52d 100644
b3c7ac
--- a/Makefile
b3c7ac
+++ b/Makefile
b3c7ac
@@ -109,6 +109,8 @@ vendor: ## vendor everything into vendor/
b3c7ac
 vendor-rm-windows:
b3c7ac
 	if [ -d "vendor/winapi" ]; then \
b3c7ac
 		rm -fr vendor/winapi*gnu*/lib/*.a; \
b3c7ac
+		rm -fr vendor/windows*/lib/*.a; \
b3c7ac
+		rm -fr vendor/windows*/lib/*.lib; \
b3c7ac
 	fi
b3c7ac
 
b3c7ac
 .PHONY: vendor-tarball