File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed 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
44
44
$(call INSERT_VERSION,BISONCPP_VERSION,$(shell bisonc++ --version) )
45
45
endif
46
46
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; }
51
52
52
53
config.mk : config.mk.in
53
54
$(error run ./bootstrap and/or configure to create config.mk)
You can’t perform that action at this time.
0 commit comments