asterisk11: fix conffiles define
authorSebastian Kemper <sebastian_ml@gmx.net>
Sun, 10 Sep 2017 20:18:30 +0000 (22:18 +0200)
committerSebastian Kemper <sebastian_ml@gmx.net>
Sun, 10 Sep 2017 20:18:32 +0000 (22:18 +0200)
The configuration file protection for modules does not work when there
is more than one configuration file. Currently conffiles is populated
with a space separated list. But the items need to be separated by
newlines. With spaces, only the first item gets added to conffiles. The
remaining items are dropped and not protected. Fix this by replacing
spaces with newlines.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
net/asterisk-11.x/Makefile

index ffd9ceb990b5e8236b5f178ed89a6c5f9a24bd16..7f38abeaa129feab1d1e648c149ef3c8a98bd4b1 100644 (file)
@@ -63,7 +63,7 @@ define BuildAsterisk11Module
   endef
 
   define Package/asterisk11-$(1)/conffiles
-$(5)
+$(subst $(space),$(newline),$(foreach c,$(5),$(c)))
   endef
 
   define Package/asterisk11-$(1)/description