From 6d14306a6f3d6fef79e20153b0a658206b3c9b61 Mon Sep 17 00:00:00 2001 From: Josh Powers Date: Mon, 21 Nov 2022 10:32:37 -0700 Subject: [PATCH] privoxy: fix postinst missing $ fixes: #19949 Signed-off-by: Josh Powers (cherry picked from commit 46e4def61f6b670daac1725df8f3fc4475fe5450) --- net/privoxy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/privoxy/Makefile b/net/privoxy/Makefile index 6ce0574afb..9f859c4eb6 100644 --- a/net/privoxy/Makefile +++ b/net/privoxy/Makefile @@ -158,7 +158,7 @@ endef define Package/privoxy/postinst #!/bin/sh # if exists, update previous version entry missing protocol - (grep -E "privoxy.*8118$" $${IPKG_INSTROOT}/etc/services) > /dev/null \ + (grep -E "privoxy.*8118$$" $${IPKG_INSTROOT}/etc/services) > /dev/null \ && sed -i "s/privoxy.*8118/privoxy\t\t8118\/tcp/" $${IPKG_INSTROOT}/etc/services # add missing tcp and udp entries -- 2.30.2