From: Claudius Heine <[email protected]> Currently the 'bg_printenv' symlink is not deleted when calling the 'make clean' target.
Adding this symlink to 'CLEANFILES' fixes this issue. Signed-off-by: Claudius Heine <[email protected]> --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index 01a30cf..47871b0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -84,6 +84,7 @@ install-exec-hook: $(LN_S) bg_setenv$(EXEEXT) \ $(DESTDIR)$(bindir)/bg_printenv$(EXEEXT) + # # EFI compilation # @@ -187,3 +188,4 @@ bg_printenvdir = $(top_srcdir) bg_printenv: $(bg_setenv) $(LN_S) bg_setenv bg_printenv +CLEANFILES += bg_printenv -- 2.11.0 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20170628090809.27123-1-claudius.heine.ext%40siemens.com. For more options, visit https://groups.google.com/d/optout.
