Blame SOURCES/201.patch

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