mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
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:
committed by
Thomas Perale
parent
bf23f3aa83
commit
83b059dba3
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user