parser 'make install' failed if 'make' wasn't run before. This patch adds the missing dependency 'install-indep: indep'.
Signed-off-by: Tyler Hicks <[email protected]> --- parser/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/Makefile b/parser/Makefile index 2b22ea9..35c9bd4 100644 --- a/parser/Makefile +++ b/parser/Makefile @@ -368,7 +368,7 @@ install-arch: $(INSTALLDEPS) install -m 755 ${TOOLS} $(DESTDIR)/sbin .PHONY: install-indep -install-indep: +install-indep: indep install -m 755 -d $(INSTALL_CONFDIR) install -m 644 subdomain.conf $(INSTALL_CONFDIR) install -m 644 parser.conf $(INSTALL_CONFDIR) -- 2.7.4 -- AppArmor mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/apparmor
