Skip to content

Commit

Permalink
scripts/augeas/Makefile.am: fix check in out-of-tree builds (e.g. dis…
Browse files Browse the repository at this point in the history
…tcheck) [networkupstools#657]

Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed May 15, 2024
1 parent fcd1ed3 commit bcfb19a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/augeas/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ check-local:
@echo "augparse proceeding to lenses verification job..."; \
echo "DISABLED for now due to https://github.com/networkupstools/nut/issues/657 -" ; \
echo "as a developer, you can run the tests below manually but not automatically:" ; \
echo " $(AUGPARSE) -I $(srcdir)/ $(srcdir)/tests/test_nut.aug" ; \
echo " $(AUGPARSE) -I $(builddir)/ -I $(srcdir)/ $(srcdir)/tests/test_nut.aug" ; \
echo "or 'make check-augeas' or 'make check-augeas-all' in `pwd`"

check-augeas:
$(AUGPARSE) -I $(srcdir)/ $(srcdir)/tests/test_nut.aug
$(AUGPARSE) -I $(builddir)/ -I $(srcdir)/ $(srcdir)/tests/test_nut.aug

check-augeas-all: check-augeas
$(AUGPARSE) -I $(srcdir)/ $(srcdir)/tests/test_nut_flaky.aug
$(AUGPARSE) -I $(srcdir)/ $(srcdir)/tests/test_nut_fixme.aug
$(AUGPARSE) -I $(builddir)/ -I $(srcdir)/ $(srcdir)/tests/test_nut_flaky.aug
$(AUGPARSE) -I $(builddir)/ -I $(srcdir)/ $(srcdir)/tests/test_nut_fixme.aug
endif

if WITH_AUGLENS
Expand Down

0 comments on commit bcfb19a

Please sign in to comment.