1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/libphonenumber/cmake-duplicate-rule-definition.patch
Ariadne Conill 6492949eea community/libphonenumber: fix sporadic race condition when building
By switching to ninja, we were able to find conflicting rules in the generated
build system files.  A patch has been applied to work around the conflicting
build system rules.
2021-04-08 17:41:25 -06:00

14 lines
410 B
Diff

Work around a deficiency in cmake's build rule generation.
Upstream: not yet
--- libphonenumber-8.12.20.orig/cpp/CMakeLists.txt
+++ libphonenumber-8.12.20/cpp/CMakeLists.txt
@@ -351,7 +351,7 @@
${TEST_METADATA_TARGET}
"${RESOURCES_DIR}/PhoneNumberMetadataForTesting.xml"
"test_metadata"
- "metadata"
+ "test_metadata"
)
list (APPEND TESTING_LIBRARY_SOURCES "src/phonenumbers/test_metadata.cc")