From aa9a75e3db328f1a63571f5a049c1d77b82e7634 Mon Sep 17 00:00:00 2001 From: Luigi Cruz Date: Thu, 7 Oct 2021 01:27:01 -0300 Subject: [PATCH] dump1090: Ignore APT dependencies. --- stage4/32-pisdr-dump1090/00-run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stage4/32-pisdr-dump1090/00-run.sh b/stage4/32-pisdr-dump1090/00-run.sh index 330bef7..3e3533c 100755 --- a/stage4/32-pisdr-dump1090/00-run.sh +++ b/stage4/32-pisdr-dump1090/00-run.sh @@ -32,14 +32,14 @@ cd /usr/local/share/adsb-wiki/readsb-install/git sed -i 's/librtlsdr0, librtlsdr-dev, //g' debian/control export DEB_BUILD_OPTIONS=noddebs -if ! dpkg-buildpackage -b -Prtlsdr -ui -uc -us +if ! dpkg-buildpackage --ignore-builtin-builddeps -b -Prtlsdr -ui -uc -us then echo "Something went wrong building the debian package, exiting!" exit 1 fi echo "Installing the Package" -if ! dpkg -i ../readsb_*.deb +if ! dpkg --force-all -i ../readsb_*.deb then echo "Something went wrong installing the debian package, exiting!" exit 1 @@ -54,4 +54,4 @@ systemctl disable --now readsb || true systemctl disable --now tar1090 || true systemctl disable --now lighttpd || true -EOF \ No newline at end of file +EOF