From 288d5030d4f08a3a546187eec1996068096b989e Mon Sep 17 00:00:00 2001 From: Janos SUTO Date: Wed, 14 Sep 2022 21:31:47 +0200 Subject: [PATCH] Fixed overwriting SYSCONFDIR in config.php.in Signed-off-by: Janos SUTO --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index e84c54bc..8aad0555 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64,7 +64,7 @@ $(RECURSIVE_TARGETS): config-php: - sed -e "s%SYSCONFDIR%$(sysconfdir)%" -e "s%SBINDIR%$(sbindir)%g" config.php.in > webui/config.php + sed -e "s%SYSCONFDIR%$(sysconfdir)%g" -e "s%SBINDIR%$(sbindir)%g" config.php.in > webui/config.php sed -e "s%BINDIR%$(bindir)%g" -i webui/config.php