Skip to content

Commit

Permalink
refer to check.log on error
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@87535 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
smeyer committed Jan 7, 2025
1 parent 4abb891 commit f2c6522
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions src/nmath/standalone/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,10 @@ check:
$(MAKE) -f test >> check.log 2>&1; \
else \
$(MAKE) all test > check.log 2>&1; \
fi
@tail check.log
@$(ECHO) "check output can be found in src/nmath/standalone/check.log"
fi || { \
$(ECHO) "==> src/nmath/standalone/check.log <=="; \
tail check.log && exit 1; \
}

Copy:
@$(ECHO) "Copying source files"
Expand Down
6 changes: 4 additions & 2 deletions src/nmath/standalone/Makefile.win
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ check: distclean
$(MAKE) -f Makefile.win test >> check.log 2>&1; \
else \
$(MAKE) -f Makefile.win all test > check.log 2>&1; \
fi
@$(ECHO) "check output can be found in src/nmath/standalone/check.log"
fi || { \
$(ECHO) "==> src/nmath/standalone/check.log <=="; \
tail check.log && exit 1; \
}

clean:
@$(RM) $(SOURCES_NMATH) *.o *.d *.def Makedeps stamp-src
Expand Down

0 comments on commit f2c6522

Please sign in to comment.