diff options
author | thegeorg <thegeorg@yandex-team.com> | 2023-08-04 19:35:51 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2023-08-04 20:54:26 +0300 |
commit | 6ef797091b0880091a909294c08d38bad6ab5cf4 (patch) | |
tree | b549abecc3dcdda61db7b82fc99cd55ed1a437ce /contrib/libs | |
parent | a17273c6bdcbe09729517de26161313ad55dc1f8 (diff) | |
download | ydb-6ef797091b0880091a909294c08d38bad6ab5cf4.tar.gz |
Get rid of contrib/libs/python/Include module
Свели все зависимости к contrib/libs/python
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/apache/arrow/cpp/src/arrow/python/ya.make | 2 | ||||
-rw-r--r-- | contrib/libs/python/Include/ya.make | 23 | ||||
-rw-r--r-- | contrib/libs/python/ya.make | 4 |
3 files changed, 1 insertions, 28 deletions
diff --git a/contrib/libs/apache/arrow/cpp/src/arrow/python/ya.make b/contrib/libs/apache/arrow/cpp/src/arrow/python/ya.make index 08514d2460..8af52632fc 100644 --- a/contrib/libs/apache/arrow/cpp/src/arrow/python/ya.make +++ b/contrib/libs/apache/arrow/cpp/src/arrow/python/ya.make @@ -8,7 +8,7 @@ LICENSE_TEXTS(.yandex_meta/licenses.list.txt) PEERDIR( contrib/libs/apache/arrow - contrib/libs/python/Include + contrib/libs/python contrib/python/numpy ) diff --git a/contrib/libs/python/Include/ya.make b/contrib/libs/python/Include/ya.make deleted file mode 100644 index 569cd71c24..0000000000 --- a/contrib/libs/python/Include/ya.make +++ /dev/null @@ -1,23 +0,0 @@ -PY23_LIBRARY() - -WITHOUT_LICENSE_TEXTS() - -LICENSE(Service-Py23-Proxy) - -NO_PYTHON_INCLUDES() - -ADDINCL(GLOBAL contrib/libs/python/Include) - -IF (PYTHON2) - CFLAGS(GLOBAL -DUSE_PYTHON2) - PEERDIR( - contrib/tools/python/lib - ) -ELSE() - CFLAGS(GLOBAL -DUSE_PYTHON3) - PEERDIR( - contrib/tools/python3/src - ) -ENDIF() - -END() diff --git a/contrib/libs/python/ya.make b/contrib/libs/python/ya.make index bc19d26699..69a087a127 100644 --- a/contrib/libs/python/ya.make +++ b/contrib/libs/python/ya.make @@ -50,7 +50,3 @@ ELSE() ENDIF() END() - -RECURSE( - Include -) |