From b3d5664549235a4b1bc172397deed7b2d1ec8ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davi=20Ant=C3=B4nio=20da=20Silva=20Santos?= Date: Fri, 3 Mar 2023 20:45:04 -0300 Subject: Do not overwrite Apache's configuration directory The package boca-web tried to modify Apache's configuration directory, which is forbidden by the Debian Policy and triggers Lintian error apache2-reverse-dependency-ships-file-in-not-allowed-directory. This direct modification was also unnecessary, as it was redone by the post installation maintainer script. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1645d87..172b8cb 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ install-bocawww: chmod 700 $(DESTDIR)/usr/sbin/boca-fixssh install-bocaapache: - mkdir -p $(DESTDIR)/etc/apache2/sites-enabled/ - cp tools/000-boca.conf $(DESTDIR)/etc/apache2/sites-enabled/000-boca.conf + mkdir -p $(DESTDIR)/etc/apache2/sites-available/ + cp tools/000-boca.conf $(DESTDIR)/etc/apache2/sites-available/000-boca.conf install-scripts: mkdir -p $(DESTDIR)/usr/sbin/ -- cgit v1.2.3