File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,10 +44,11 @@ parse.cc parserbase.h: checktestdata.y parser.h parser.ih parsetype.hpp
4444 $(call INSERT_VERSION,BISONCPP_VERSION,$(shell bisonc++ --version) )
4545endif
4646
47- checksucc = ./checktestdata $$opts $$prog $$data >/dev/null 2>&1 || \
48- { echo "Running './checktestdata $$opts $$prog $$data' did not succeed..." ; exit 1; }
49- checkfail = ./checktestdata $$opts $$prog $$data >/dev/null 2>&1 && \
50- { echo "Running './checktestdata $$opts $$prog $$data' did not fail..." ; exit 1; }
47+ checkcmd = ./checktestdata $$opts $$prog $$data
48+ checksucc = $(checkcmd ) >/dev/null 2>&1 || \
49+ { echo "Running '$(checkcmd ) ' did not succeed..." ; exit 1; }
50+ checkfail = $(checkcmd ) >/dev/null 2>&1 && \
51+ { echo "Running '$(checkcmd ) ' did not fail..." ; exit 1; }
5152
5253config.mk : config.mk.in
5354 $(error run ./bootstrap and/or configure to create config.mk)
You can’t perform that action at this time.
0 commit comments