From fa7bd5eabf902b2e0c4d8c28d6d4eebb0ebcc06f Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 11 Apr 2017 11:21:31 +0200 Subject: [PATCH] Fail hard if sed isn't found now that the new SDK is required and supplies it. --- win32/build/confutils.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/win32/build/confutils.js b/win32/build/confutils.js index d93cfe4a68..46c4090b4f 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -2880,7 +2880,9 @@ function toolset_setup_project_tools() } /* TODO throw error, ignore for now for BC. */ - PATH_PROG('sed'); + if (!PATH_PROG('sed')) { + ERROR('sed is required') + } RE2C = PATH_PROG('re2c'); if (RE2C) { -- 2.50.1