mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
utils: don't install two copies of aa-easyprof
With the conversion of the python utils, aa-easyprof got added to the list of tools to be installed (in /usr/sbin/), but is already installed (in /usr/bin) by the python-tools-setup.py distutils script, leaving two copies of the tool in place. This patch filters out aa-easyprof from the list of tools for the makefile to install itself, leaving it to (continue to) be installed by the distutils script. Signed-off-by: Steve Beattie <steve@nxnw.org> Acked-by: Seth Arnold <seth.arnold@canonical.com>
This commit is contained in:
parent
01ecdee3b2
commit
74b523f248
1 changed files with 2 additions and 1 deletions
|
@ -54,7 +54,8 @@ install: ${MANPAGES} ${HTMLMANPAGES}
|
|||
install -m 644 logprof.conf severity.db notify.conf ${CONFDIR}
|
||||
install -d ${BINDIR}
|
||||
ln -sf aa-status ${BINDIR}/apparmor_status
|
||||
install -m 755 ${TOOLS} ${BINDIR}
|
||||
# aa-easyprof is installed by python-tools-setup.py
|
||||
install -m 755 $(filter-out aa-easyprof, ${TOOLS}) ${BINDIR}
|
||||
$(MAKE) -C po install DESTDIR=${DESTDIR} NAME=${NAME}
|
||||
$(MAKE) install_manpages DESTDIR=${DESTDIR}
|
||||
$(MAKE) -C vim install DESTDIR=${DESTDIR}
|
||||
|
|
Loading…
Add table
Reference in a new issue