Hi Christian,

should be fixed with 43017 - thanks for reporting.

Btw, there's two little problems with the prerm & postinst defines in
the ddns-scripts Makefile:

First you should not indent the script code, otherwise the final script
file will have leading spaces on each line.

Second you must quote any "$" as "$$" otherwise it is interpolated by
make and not output to the file, e.g. `[ -n "${IPKG_INSTROOT}" ]`
becomes `[ -n "" ]` therfore you need to write it as
  `[ -n "$${IPKG_INSTROOT}" ]`.


~ Jow
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to