Remove quotation marks from objcopy call parameter for QNX

If the objcopy call parameter is in quotations marks it fails the call
and prevents separate debug info builds for QNX.

Fixes: QTBUG-132801
Change-Id: Ifadf57f80eb5c354aedeb8985bc7a0c9b79dc62e
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
(cherry picked from commit 9261b68395df75dbb01539c547832d9cc35521d9)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit 0d4c3c852abb77da83b1b096cf9f5352f9bb0eca)
This commit is contained in:
Tuomas Vaarala 2025-01-15 13:45:57 +02:00 committed by Qt Cherry-pick Bot
parent 599301270f
commit 2434b2df0c

View File

@ -270,7 +270,7 @@ function(qt_enable_separate_debug_info target installDestination)
if(QNX)
set(debug_info_suffix sym)
set(debug_info_keep --keep-file-symbols)
set(strip_args "--strip-debug -R.ident")
set(strip_args --strip-debug -R.ident)
else()
set(debug_info_suffix debug)
set(debug_info_keep --only-keep-debug)