package/qt6/qt6base: use regular $(RM) to remove directory

Using '$(Q)rm -rf' is not the typical thing we do in Buildroot, we
more commonly use '$(RM) -rf'.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 45789c73b1)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
Thomas Petazzoni
2026-05-30 23:14:12 +02:00
committed by Thomas Perale
parent bf23f3aa83
commit 83b059dba3

View File

@@ -427,7 +427,7 @@ QT6BASE_CONF_OPTS += -DFEATURE_zstd=OFF
endif
define QT6BASE_RM_USR_MKSPECS
$(Q)rm -rf $(TARGET_DIR)/usr/mkspecs
$(RM) -rf $(TARGET_DIR)/usr/mkspecs
endef
QT6BASE_TARGET_FINALIZE_HOOKS += QT6BASE_RM_USR_MKSPECS