From 12ec5d5059ea107a960b9e20dd11b9f7affd1070 Mon Sep 17 00:00:00 2001 From: Thomas Devoogdt Date: Sun, 19 Jan 2025 14:39:38 +0100 Subject: [PATCH] package/lighttpd: fix missing conf install Commit 2c94ed37fb4d20d3a8e485e972ccdc2aef43e59a bumped lighttpd, but forgot to include the lighttpd.annotated.conf file to the install list. See the news: https://www.lighttpd.net/2025/1/10/1.4.77/ "doc/config/lighttpd.conf has been renamed to doc/config/lighttpd.annotated.conf, and doc/config/lighttpd.conf is now a simpler header which includes lighttpd.annotated.conf." Signed-off-by: Thomas Devoogdt Signed-off-by: Julien Olivain --- package/lighttpd/lighttpd.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/lighttpd/lighttpd.mk b/package/lighttpd/lighttpd.mk index 985b9ca513..609fe3e3be 100644 --- a/package/lighttpd/lighttpd.mk +++ b/package/lighttpd/lighttpd.mk @@ -185,6 +185,8 @@ define LIGHTTPD_INSTALL_CONFIG $(INSTALL) -d -m 0755 $(TARGET_DIR)/var/www $(INSTALL) -D -m 0644 $(@D)/doc/config/lighttpd.conf \ $(TARGET_DIR)/etc/lighttpd/lighttpd.conf + $(INSTALL) -D -m 0644 $(@D)/doc/config/lighttpd.annotated.conf \ + $(TARGET_DIR)/etc/lighttpd/lighttpd.annotated.conf $(INSTALL) -D -m 0644 $(@D)/doc/config/modules.conf \ $(TARGET_DIR)/etc/lighttpd/modules.conf $(INSTALL) -D -m 0644 $(@D)/doc/config/conf.d/access_log.conf \