From: Peter Korsgaard Date: Fri, 22 Apr 2011 11:27:14 +0000 (+0200) Subject: proftpd: remove UseIPv6 option from sample config if built without IPv6 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af6b3ecf401935edfe613c2d90423f34bc38460e;p=buildroot.git proftpd: remove UseIPv6 option from sample config if built without IPv6 proftpd refuses to start if it finds a UseIPv6 option in the configuration file (even if set to off) when built without IPv6 support, so comment out line. Signed-off-by: Peter Korsgaard --- diff --git a/package/proftpd/proftpd.mk b/package/proftpd/proftpd.mk index 191f611497..75ab930ff6 100644 --- a/package/proftpd/proftpd.mk +++ b/package/proftpd/proftpd.mk @@ -31,6 +31,7 @@ define PROFTPD_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/proftpd $(TARGET_DIR)/usr/sbin/proftpd @if [ ! -f $(TARGET_DIR)/etc/proftpd.conf ]; then \ $(INSTALL) -m 0644 -D $(@D)/sample-configurations/basic.conf $(TARGET_DIR)/etc/proftpd.conf; \ + $(if $(BR2_INET_IPV6),,$(SED) 's/^UseIPv6/# UseIPv6/' $(TARGET_DIR)/etc/proftpd.conf;) \ fi $(INSTALL) -m 0755 package/proftpd/S50proftpd $(TARGET_DIR)/etc/init.d endef