mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
parser: fix parallel install order
In order to have all the prerequisite folders before actually installing os dependent configuration files, we need to guarantee the correct install sequence. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
This commit is contained in:
parent
d2464d6dcb
commit
ed4e0a2551
1 changed files with 3 additions and 1 deletions
|
@ -356,7 +356,9 @@ INSTALLDEPS+=install-$(DISTRO)
|
|||
endif
|
||||
|
||||
.PHONY: install
|
||||
install: install-indep install-arch
|
||||
install:
|
||||
$(MAKE) install-indep
|
||||
$(MAKE) install-arch
|
||||
|
||||
.PHONY: install-arch
|
||||
install-arch: $(INSTALLDEPS)
|
||||
|
|
Loading…
Add table
Reference in a new issue