diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-05-15 08:19:02 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-08-16 21:19:10 +0100 |
commit | 9b31209b4caaa02b3044acd2375a7f595cdbd520 (patch) | |
tree | 9065901c29c7931da09295d9d99f0068267d7ad1 /depends/hosts | |
parent | 4a5208a81d5bfeef270c64d48dce3444d6d03511 (diff) |
depends: Rename `cmake_system` -> `cmake_system_name`
Diffstat (limited to 'depends/hosts')
-rw-r--r-- | depends/hosts/darwin.mk | 2 | ||||
-rw-r--r-- | depends/hosts/freebsd.mk | 2 | ||||
-rw-r--r-- | depends/hosts/linux.mk | 2 | ||||
-rw-r--r-- | depends/hosts/mingw32.mk | 2 | ||||
-rw-r--r-- | depends/hosts/netbsd.mk | 2 | ||||
-rw-r--r-- | depends/hosts/openbsd.mk | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/depends/hosts/darwin.mk b/depends/hosts/darwin.mk index a50e36110d..6104239735 100644 --- a/depends/hosts/darwin.mk +++ b/depends/hosts/darwin.mk @@ -75,4 +75,4 @@ darwin_release_CXXFLAGS=$(darwin_release_CFLAGS) darwin_debug_CFLAGS=-O1 -g darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS) -darwin_cmake_system=Darwin +darwin_cmake_system_name=Darwin diff --git a/depends/hosts/freebsd.mk b/depends/hosts/freebsd.mk index 055097b03d..8cef32e231 100644 --- a/depends/hosts/freebsd.mk +++ b/depends/hosts/freebsd.mk @@ -28,4 +28,4 @@ x86_64_freebsd_CC=$(default_host_CC) -m64 x86_64_freebsd_CXX=$(default_host_CXX) -m64 endif -freebsd_cmake_system=FreeBSD +freebsd_cmake_system_name=FreeBSD diff --git a/depends/hosts/linux.mk b/depends/hosts/linux.mk index f5ce2bb0b8..df01b6b2c0 100644 --- a/depends/hosts/linux.mk +++ b/depends/hosts/linux.mk @@ -39,4 +39,4 @@ i686_linux_CXX=$(default_host_CXX) -m32 x86_64_linux_CC=$(default_host_CC) -m64 x86_64_linux_CXX=$(default_host_CXX) -m64 endif -linux_cmake_system=Linux +linux_cmake_system_name=Linux diff --git a/depends/hosts/mingw32.mk b/depends/hosts/mingw32.mk index 4c657358f6..6e868322d5 100644 --- a/depends/hosts/mingw32.mk +++ b/depends/hosts/mingw32.mk @@ -19,4 +19,4 @@ mingw32_debug_CXXFLAGS=$(mingw32_debug_CFLAGS) mingw32_debug_CPPFLAGS=-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC -mingw32_cmake_system=Windows +mingw32_cmake_system_name=Windows diff --git a/depends/hosts/netbsd.mk b/depends/hosts/netbsd.mk index f33b2d2889..16dff92d42 100644 --- a/depends/hosts/netbsd.mk +++ b/depends/hosts/netbsd.mk @@ -36,4 +36,4 @@ x86_64_netbsd_CC=$(default_host_CC) -m64 x86_64_netbsd_CXX=$(default_host_CXX) -m64 endif -netbsd_cmake_system=NetBSD +netbsd_cmake_system_name=NetBSD diff --git a/depends/hosts/openbsd.mk b/depends/hosts/openbsd.mk index bdd36dc9b3..63f6d73d55 100644 --- a/depends/hosts/openbsd.mk +++ b/depends/hosts/openbsd.mk @@ -28,4 +28,4 @@ x86_64_openbsd_CC=$(default_host_CC) -m64 x86_64_openbsd_CXX=$(default_host_CXX) -m64 endif -openbsd_cmake_system=OpenBSD +openbsd_cmake_system_name=OpenBSD |