From 1569131f952915eb12b91268bdf11df3a005fe75 Mon Sep 17 00:00:00 2001 From: Greg Dietsche Date: Sun, 28 Feb 2021 13:40:22 -0600 Subject: [PATCH] Correct Reference to IPKG_INSTROOT IPKG_INSTROOT was misspelled. Signed-off-by: Gregory L. Dietsche --- net/family-dns/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/family-dns/Makefile b/net/family-dns/Makefile index e7cd4d1c33..54728656e0 100644 --- a/net/family-dns/Makefile +++ b/net/family-dns/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=family-dns PKG_VERSION:=1.0.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=MIT PKG_MAINTAINER:=Gregory L. Dietsche @@ -47,7 +47,7 @@ endef define Package/family-dns/prerm #!/bin/sh -if [ -z "$${IPGK_INSTROOT}" ]; then +if [ -z "$${IPKG_INSTROOT}" ]; then /usr/sbin/family-dns-update uninstall fi exit 0