From: Simon Richter Date: Thu, 5 May 2016 08:01:38 +0000 (+0200) Subject: Add missing dependency github_plugin -> pcbcommon X-Git-Tag: archive/raspbian/6.0.2+dfsg-1+rpi1~1^2^2^2^2^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=995194f742839a634180fd87d9580a28668da255;p=kicad.git Add missing dependency github_plugin -> pcbcommon The GitHub plugin needs the generated PCB parser code. Gbp-Pq: Topic fixes Gbp-Pq: Name Add-missing-dependency-github_plugin-pcbcommon.patch --- diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt index a0454bec..4fe1978e 100644 --- a/pcbnew/CMakeLists.txt +++ b/pcbnew/CMakeLists.txt @@ -538,6 +538,8 @@ add_subdirectory( pcad2kicadpcb_plugin ) if( BUILD_GITHUB_PLUGIN ) add_subdirectory( github ) add_dependencies( github_plugin lib-dependencies ) + # github_plugin depends on make_lexer outputs in common + add_dependencies( github_plugin pcbcommon ) endif()