aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cparser/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/GNUmakefile b/cparser/GNUmakefile
index d83c49e5..a2646c7b 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 command -v gcut >/dev/null ; then echo gcut ; else echo cut ; fi)
# ------------------------------------------------------------------------------