mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:28:12 +00:00
35 lines
1.4 KiB
Diff
35 lines
1.4 KiB
Diff
From 1dc6e8b8d7cb459ce209b9f55a69c1f53f277daa Mon Sep 17 00:00:00 2001
|
|
From: TheFightingCatfish <seekingblues@gmail.com>
|
|
Date: Fri, 13 Aug 2021 06:52:59 +0800
|
|
Subject: [PATCH 2/2] Remove uname detection in config.mak.uname
|
|
|
|
---
|
|
config.mak.uname | 12 ++++++------
|
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/config.mak.uname b/config.mak.uname
|
|
index 259d151..b072f4c 100644
|
|
--- a/config.mak.uname
|
|
+++ b/config.mak.uname
|
|
@@ -4,12 +4,12 @@
|
|
# Microsoft's Safe Exception Handling in libraries (such as zlib).
|
|
# Typically required for VS2013+/32-bit compilation on Vista+ versions.
|
|
|
|
-uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
|
-uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
|
|
-uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
|
|
-uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
|
|
-uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
|
|
-uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
|
|
+# uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
|
+# uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
|
|
+# uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
|
|
+# uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
|
|
+# uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
|
|
+# uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
|
|
|
|
ifneq ($(findstring MINGW,$(uname_S)),)
|
|
uname_S := MINGW
|
|
--
|
|
2.36.1
|
|
|