Remove external projects from .deb

pull/1754/head
Jon Beniston 2023-07-31 19:20:18 +01:00
rodzic e9c258f8c2
commit 6899a32655
1 zmienionych plików z 6 dodań i 0 usunięć

6
debian/rules vendored
Wyświetl plik

@ -5,6 +5,12 @@
override_dh_auto_configure:
dh_auto_configure -- -DARCH_OPT=nehalem -DENABLE_EXTERNAL_LIBRARIES=AUTO -DDEBUG_OUTPUT=ON -DBUILD_SERVER=OFF
# delete any external projects (such as libsigmf) that are installed
# would be better if we could prevent them from being installed in CMakeLists.txt
override_dh_install:
-find debian/sdrangel -type d -name external -exec rm -r {} \; -exec mkdir {} \; -exec rmdir -p {} \;
dh_install
override_dh_auto_test:
echo "Skipping test step"