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
Pick-to: 6.8
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>
This commit is contained in:
Tuomas Vaarala 2025-01-15 13:45:57 +02:00 committed by Qt Cherry-pick Bot
parent 133838a7c7
commit 0d4c3c852a

View File

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