improve libhamlib conflict resolution

dev
KM4ACK 2023-02-23 14:21:48 -06:00
rodzic 9a8eed66e5
commit 929918c921
1 zmienionych plików z 6 dodań i 2 usunięć

8
update
Wyświetl plik

@ -658,9 +658,13 @@ bash ${HOME}/pi-build/menu-update
#Remove temp files #Remove temp files
rm ${BASE} ${ADDITIONAL} ${UTILITY} ${FLSUITE} >/dev/null 2>&1 rm ${BASE} ${ADDITIONAL} ${UTILITY} ${FLSUITE} >/dev/null 2>&1
#remove libham (rigctl) installed from apt #remove libham (rigctl) library installed from apt
#since it conflicts with hamlib installed from source #since it conflicts with hamlib installed from source
sudo apt purge -y libhamlib4 #sudo apt purge -y libhamlib4 (old way)
#new way will leave libhamlib4 installed and just remove the library that conflicts
sudo rm /lib/arm-linux-gnueabihf/libhamlib*
sudo ldconfig
#restore crontab #restore crontab
crontab ${TEMPCRON} crontab ${TEMPCRON}