summaryrefslogtreecommitdiffhomepage
path: root/third-party/infoware/1.current.patch
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-03-12 22:07:03 +0100
committerAki <please@ignore.pl>2024-03-12 22:07:36 +0100
commit81bb6873f1c0291fecbf6e429ad15ac3db66a4c0 (patch)
treefd7552ecabeeffb45a1fbe3730ab62bc7a64dd85 /third-party/infoware/1.current.patch
parentf43d32d6d2cc7ecd04f4f06f20d5a6fc2c87c9ae (diff)
downloadstarshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.zip
starshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.tar.gz
starshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.tar.bz2
Legal notices updated
Rename contrib -> third-party intendes to express the origin and purpose of that part of the code better. I plan to readd contrib/ again but with more in-project things like bash-completions, dev workflow scripts etc.
Diffstat (limited to 'third-party/infoware/1.current.patch')
-rw-r--r--third-party/infoware/1.current.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/third-party/infoware/1.current.patch b/third-party/infoware/1.current.patch
new file mode 100644
index 0000000..9ef31bc
--- /dev/null
+++ b/third-party/infoware/1.current.patch
@@ -0,0 +1,30 @@
+diff '--color=auto' -ru a/CMakeLists.txt b/CMakeLists.txt
+--- a/CMakeLists.txt 2024-03-09 23:00:40.101308564 +0100
++++ b/CMakeLists.txt 2024-03-09 22:59:36.067973296 +0100
+@@ -84,7 +84,7 @@
+ find_package(Git)
+ endif()
+
+-set(INFOWARE_PCI_DATA_DIR infoware_generated CACHE PATH "Output directory for the PCI ids generator")
++set(INFOWARE_PCI_DATA_DIR "${CMAKE_CURRENT_BINARY_DIR}/infoware_generated" CACHE PATH "Output directory for the PCI ids generator")
+ set(INFOWARE_PCI_DATA_HPP pci_data.hpp)
+ set(INFOWARE_PCI_DATA_GEN "${INFOWARE_PCI_DATA_DIR}/${INFOWARE_PCI_DATA_HPP}")
+ set(infoware_pci_ids_error "\
+@@ -132,13 +132,13 @@
+ else()
+ include(ExternalProject)
+ ExternalProject_Add(infoware_generate_pcis
+- SOURCE_DIR ${CMAKE_SOURCE_DIR}
+- PREFIX ${CMAKE_BINARY_DIR}/pci_generator
+- BINARY_DIR ${CMAKE_BINARY_DIR}/pci_generator
++ SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}
++ PREFIX ${CMAKE_CURRENT_BINARY_DIR}/pci_generator
++ BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/pci_generator
+ BUILD_COMMAND ${CMAKE_COMMAND} --build <BINARY_DIR> --target infoware_generate_pcis
+ INSTALL_COMMAND ""
+ BUILD_ALWAYS ON
+- CMAKE_ARGS -DINFOWARE_PCI_DATA_DIR:PATH=${CMAKE_BINARY_DIR}/${INFOWARE_PCI_DATA_DIR})
++ CMAKE_ARGS -DINFOWARE_PCI_DATA_DIR:PATH=${CMAKE_CURRENT_BINARY_DIR}/${INFOWARE_PCI_DATA_DIR})
+ endif()
+ add_dependencies(infoware infoware_generate_pcis)
+