diff options
author | Josh Powers <powersj@fastmail.com> | 2022-11-21 10:32:37 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-11-26 02:45:04 -0800 |
commit | 46e4def61f6b670daac1725df8f3fc4475fe5450 (patch) | |
tree | a3478077cba6260566c2db40deb925bc95ae87f3 /net/privoxy/Makefile | |
parent | 7bcc02e7c92171044a0aeabd9d988189c6b849b1 (diff) |
privoxy: fix postinst missing $
fixes: #19949
Signed-off-by: Josh Powers <powersj@fastmail.com>
Diffstat (limited to 'net/privoxy/Makefile')
-rw-r--r-- | net/privoxy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/privoxy/Makefile b/net/privoxy/Makefile index 6ce0574af..9f859c4eb 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 |