Blame SOURCES/201.patch

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