freeswitch-stable: fix escaping
Fix escaping of dollar sign, otherwise a postinst-pkg script will not be correct. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
This commit is contained in:
parent
4326f5cf1a
commit
7b265d7f00
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ endef
|
|||
ifeq ($(1)$(CONFIG_FS_STABLE_WITH_LIBEDIT),fs_cli)
|
||||
define Package/$(PKG_NAME)-util-$(1)/postinst
|
||||
#!/bin/sh
|
||||
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||
if [ -z "$$$${IPKG_INSTROOT}" ]; then
|
||||
echo
|
||||
echo "o-------------------------------------------------------------------o"
|
||||
echo "| fs_cli note |"
|
||||
|
|
Loading…
Reference in a new issue