Blame SOURCES/201.patch

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