File tree Expand file tree Collapse file tree 5 files changed +2
-150
lines changed Expand file tree Collapse file tree 5 files changed +2
-150
lines changed Original file line number Diff line number Diff line change @@ -130,11 +130,6 @@ ELSEIF (OS_LINUX OR OS_DARWIN)
130
130
ELSE()
131
131
DEFAULT(CXX_RT "libcxxrt")
132
132
ENDIF()
133
- IF (MUSL)
134
- PEERDIR(
135
- contrib/libs/musl/include
136
- )
137
- ENDIF()
138
133
ELSEIF (OS_WINDOWS)
139
134
SRCS(
140
135
src/support/win32/locale_win32.cpp
@@ -157,9 +152,6 @@ ELSEIF (OS_EMSCRIPTEN)
157
152
-Wno-unknown-pragmas
158
153
-nostdinc++
159
154
)
160
- PEERDIR(
161
- contrib/restricted/emscripten/include
162
- )
163
155
ELSE()
164
156
DEFAULT(CXX_RT "glibcxx_static")
165
157
CXXFLAGS(
Original file line number Diff line number Diff line change @@ -52,11 +52,6 @@ ELSEIF (OS_LINUX OR OS_DARWIN)
52
52
ELSE()
53
53
DEFAULT(CXX_RT "libcxxrt")
54
54
ENDIF()
55
- IF (MUSL)
56
- PEERDIR(
57
- contrib/libs/musl/include
58
- )
59
- ENDIF()
60
55
ELSEIF (OS_WINDOWS)
61
56
SRCS(
62
57
src/support/win32/locale_win32.cpp
@@ -77,9 +72,6 @@ ELSEIF (OS_EMSCRIPTEN)
77
72
-Wno-unknown-pragmas
78
73
-nostdinc++
79
74
)
80
- PEERDIR(
81
- contrib/restricted/emscripten/include
82
- )
83
75
ELSE()
84
76
DEFAULT(CXX_RT "glibcxx_static")
85
77
CXXFLAGS(
Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ cd ${SRC}/python/google
48
48
(
49
49
echo 'PY_SRCS('
50
50
echo ' TOP_LEVEL'
51
- find . -type f -name '*.py' | sort | sed -En 's|\.\/| google\/|p'
51
+ find . -type f -name '*.py' | sed -En 's|\.\/| google\/|p' | env LANG=C sort
52
52
echo ')'
53
53
) > ya.make.inc
54
54
55
55
cd ${SRC}/python/google
56
56
(
57
57
echo 'SRCS('
58
- find . -type f -name '*.cc' | sort | sed -En 's|\.\/| google\/|p'
58
+ find . -type f -name '*.cc' | sed -En 's|\.\/| google\/|p' | env LANG=C sort
59
59
echo ')'
60
60
) >> ya.make.inc
61
61
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments