Skip to content

Commit 9b31209

Browse files
committed
depends: Rename cmake_system -> cmake_system_name
1 parent 4a5208a commit 9b31209

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

depends/funcs.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ ifeq ($($(1)_type),build)
191191
$(1)_cmake += -DCMAKE_INSTALL_RPATH:PATH="$$($($(1)_type)_prefix)/lib"
192192
else
193193
ifneq ($(host),$(build))
194-
$(1)_cmake += -DCMAKE_SYSTEM_NAME=$($(host_os)_cmake_system)
194+
$(1)_cmake += -DCMAKE_SYSTEM_NAME=$($(host_os)_cmake_system_name)
195195
$(1)_cmake += -DCMAKE_C_COMPILER_TARGET=$(host)
196196
$(1)_cmake += -DCMAKE_CXX_COMPILER_TARGET=$(host)
197197
endif

depends/hosts/darwin.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
7575
darwin_debug_CFLAGS=-O1 -g
7676
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
7777

78-
darwin_cmake_system=Darwin
78+
darwin_cmake_system_name=Darwin

depends/hosts/freebsd.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ x86_64_freebsd_CC=$(default_host_CC) -m64
2828
x86_64_freebsd_CXX=$(default_host_CXX) -m64
2929
endif
3030

31-
freebsd_cmake_system=FreeBSD
31+
freebsd_cmake_system_name=FreeBSD

depends/hosts/linux.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ i686_linux_CXX=$(default_host_CXX) -m32
3939
x86_64_linux_CC=$(default_host_CC) -m64
4040
x86_64_linux_CXX=$(default_host_CXX) -m64
4141
endif
42-
linux_cmake_system=Linux
42+
linux_cmake_system_name=Linux

depends/hosts/mingw32.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ mingw32_debug_CXXFLAGS=$(mingw32_debug_CFLAGS)
1919

2020
mingw32_debug_CPPFLAGS=-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC
2121

22-
mingw32_cmake_system=Windows
22+
mingw32_cmake_system_name=Windows

depends/hosts/netbsd.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ x86_64_netbsd_CC=$(default_host_CC) -m64
3636
x86_64_netbsd_CXX=$(default_host_CXX) -m64
3737
endif
3838

39-
netbsd_cmake_system=NetBSD
39+
netbsd_cmake_system_name=NetBSD

depends/hosts/openbsd.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ x86_64_openbsd_CC=$(default_host_CC) -m64
2828
x86_64_openbsd_CXX=$(default_host_CXX) -m64
2929
endif
3030

31-
openbsd_cmake_system=OpenBSD
31+
openbsd_cmake_system_name=OpenBSD

0 commit comments

Comments
 (0)