From 5010e3791a9b54ba248d00e3fd548fd261150bae Mon Sep 17 00:00:00 2001 From: James Choi Date: Thu, 6 Apr 2023 08:29:01 -0400 Subject: [PATCH] Fix compiler name for QNX (#237) --- src/tools/qcc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/qcc.jam b/src/tools/qcc.jam index 0b8f05ca14..96f927f4b8 100644 --- a/src/tools/qcc.jam +++ b/src/tools/qcc.jam @@ -38,7 +38,7 @@ toolset.inherit-rules qcc : unix ; rule init ( version ? : command * : options * ) { local condition = [ common.check-init-parameters qcc : version $(version) ] ; - local command = [ common.get-invocation-command qcc : QCC : $(command) ] ; + local command = [ common.get-invocation-command qcc : qcc : $(command) ] ; common.handle-options qcc : $(condition) : $(command) : $(options) ; }