diff options
author | xengineering <me@xengineering.eu> | 2024-11-24 17:57:25 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-11-24 17:57:25 +0100 |
commit | d6296cb8133f36af8252ff0827fb9d730faf0073 (patch) | |
tree | 6b05b6d7fd225af9ccaecc0a5e2caf4dc525e7a2 | |
parent | 38cb36442e6b50dbef1d45aff8be0124d8ca1c08 (diff) | |
download | graphics-inkscape-d6296cb8133f36af8252ff0827fb9d730faf0073.tar graphics-inkscape-d6296cb8133f36af8252ff0827fb9d730faf0073.tar.zst graphics-inkscape-d6296cb8133f36af8252ff0827fb9d730faf0073.zip |
icons: Fix executing multiple Inkscape instances
This adds a workaround for the Inkscape call to allow calling multiple
instances of Inkscape in parallel.
[1]: https://gitlab.com/inkscape/inkscape/-/issues/4716
-rw-r--r-- | icons/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt index e5d15d7..a66c305 100644 --- a/icons/CMakeLists.txt +++ b/icons/CMakeLists.txt @@ -9,6 +9,7 @@ foreach(icon ${icons}) "icon-${icon}-pdf" POST_BUILD COMMAND + SELF_CALL=xxx # https://gitlab.com/inkscape/inkscape/-/issues/4716 inkscape --export-type=pdf --export-filename=${CMAKE_CURRENT_BINARY_DIR}/${icon}.pdf |