skip header install if already present

This commit is contained in:
aptalca 2020-06-22 12:45:34 -04:00
parent 98516feb83
commit a96f5bab3a

View File

@ -20,7 +20,7 @@ else
fi fi
# install headers if necessary # install headers if necessary
if [ "$SKIP_COMPILE" != "true" ]; then if [ "$SKIP_COMPILE" != "true" ] && [ ! -e /lib/modules/$(uname -r)/build ]; then
echo "**** Attempting kernel header install ****" echo "**** Attempting kernel header install ****"
apt-get update apt-get update
if apt-cache show linux-headers-$(uname -r) 2&>1 >/dev/null; then if apt-cache show linux-headers-$(uname -r) 2&>1 >/dev/null; then