diff --git a/consumer/api/python/dist_linux/CMakeLists.txt b/consumer/api/python/dist_linux/CMakeLists.txt index 440e82589faaac9f3eb186601af6820bb253f727..097f8081f12fb5f2184b40b92ab0bfe10f45bcc0 100644 --- a/consumer/api/python/dist_linux/CMakeLists.txt +++ b/consumer/api/python/dist_linux/CMakeLists.txt @@ -20,7 +20,7 @@ if ("rpm" IN_LIST BUILD_PYTHON_PACKAGES) --requires=python3-numpy --binary-only COMMAND rm -f dist/python3*.gz dist/*debuginfo* dist/*debugsource* ) - ADD_DEPENDENCIES(python3-rpm-consumer copy_python_dist-consumer) + ADD_DEPENDENCIES(python3-rpm-consumer python-rpm-consumer) ADD_DEPENDENCIES(python-rpm-consumer copy_python_dist-consumer) endif() @@ -40,7 +40,7 @@ if ("deb" IN_LIST BUILD_PYTHON_PACKAGES) COMMAND rm -f deb_dist/*dbgsym* COMMAND cp deb_dist/*.deb dist/ ) - ADD_DEPENDENCIES(python3-deb-consumer copy_python_dist-consumer) + ADD_DEPENDENCIES(python3-deb-consumer python-deb-consumer) ADD_DEPENDENCIES(python-deb-consumer copy_python_dist-consumer) endif() diff --git a/deploy/build_env/debians/build.sh b/deploy/build_env/debians/build.sh index db52c3c7466975b519cda89b58ec717ae6459ea4..2ba687b4b3f909163d8566ab536bed84ea57fbe9 100755 --- a/deploy/build_env/debians/build.sh +++ b/deploy/build_env/debians/build.sh @@ -27,4 +27,4 @@ fi cmake -DNUMPY_VERSION=0 -DBUILD_PYTHON=ON -DBUILD_PYTHON_PACKAGES="source;deb" -DBUILD_PYTHON_DOCS=$BUILD_PYTHON_DOCS .. -make +make -j1 diff --git a/producer/api/python/dist_linux/CMakeLists.txt b/producer/api/python/dist_linux/CMakeLists.txt index be6a1a55f0f13cdecac6f326f6af58e917a6655a..1c33dcf6deb8c6e73d6ffef654dcc2ad68bd5490 100644 --- a/producer/api/python/dist_linux/CMakeLists.txt +++ b/producer/api/python/dist_linux/CMakeLists.txt @@ -15,7 +15,7 @@ if ("rpm" IN_LIST BUILD_PYTHON_PACKAGES) --requires=python3-numpy --binary-only COMMAND rm -f dist/python3*.gz dist/*debuginfo* dist/*debugsource* ) - ADD_DEPENDENCIES(python3-rpm-producer copy_python_dist-producer) + ADD_DEPENDENCIES(python3-rpm-producer python-rpm-producer) ADD_DEPENDENCIES(python-rpm-producer copy_python_dist-producer) endif() @@ -35,7 +35,7 @@ if ("deb" IN_LIST BUILD_PYTHON_PACKAGES) COMMAND rm -f deb_dist/*dbgsym* COMMAND cp deb_dist/*.deb dist/ ) - ADD_DEPENDENCIES(python3-deb-producer copy_python_dist-producer) + ADD_DEPENDENCIES(python3-deb-producer python-deb-producer) ADD_DEPENDENCIES(python-deb-producer copy_python_dist-producer) endif()