diff options
| author | Davi Antônio da Silva Santos <antoniossdavi@gmail.com> | 2023-03-03 23:45:04 +0000 |
|---|---|---|
| committer | Davi Antônio da Silva Santos <antoniossdavi@gmail.com> | 2023-03-04 01:24:15 +0000 |
| commit | b3d5664549235a4b1bc172397deed7b2d1ec8ec5 (patch) | |
| tree | 93f9a94f626c2cea4e5f5c7f028483d657fe1e83 /Makefile | |
| parent | e3ed13ce5dc654fb36f94ffb2a20744cff2cd77f (diff) | |
| download | boca-b3d5664549235a4b1bc172397deed7b2d1ec8ec5.tar.gz boca-b3d5664549235a4b1bc172397deed7b2d1ec8ec5.zip | |
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.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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/ |