From 22ba27a76497ac06fdaddf5a54346107a4727f6f Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Mon, 26 Oct 2015 13:01:57 +0100 Subject: Also redirect the output of stderr. Bug 17481. --- cparser/GNUmakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cparser/GNUmakefile') diff --git a/cparser/GNUmakefile b/cparser/GNUmakefile index c2792301..d83c49e5 100644 --- a/cparser/GNUmakefile +++ b/cparser/GNUmakefile @@ -68,7 +68,7 @@ DATABASE := handcrafted.messages # We use (GNU) cut when de-lexing examples sentences. -CUT := $(shell if which gcut >/dev/null ; then echo gcut ; else echo cut ; fi) +CUT := $(shell if which gcut >&/dev/null ; then echo gcut ; else echo cut ; fi) # ------------------------------------------------------------------------------ @@ -184,4 +184,3 @@ clean: rm -f pre_parser.messages rm -f $(DATABASE).raw $(DATABASE).bak rm -f deLexer - -- cgit