Stm32cube.py CMSIS Lib path correction

stm32cube.py lists the wrong path for CMSIS GCC library
Is
Line 241: os.path.join(FRAMEWORK_DIR, “Drivers”, “CMSIS”, “Lib”, “GCC”),
Should be:
Line 241: os.path.join(FRAMEWORK_DIR, “Drivers”, “CMSIS”, “DSP”, “Lib”, “GCC”),

at least that is correct for “framework-stm32cubel4” my work around is to add linker command
-L$PROJECT_DIR/packages/framework-stm32cubel4/Drivers/CMSIS/DSP/Lib/GCC

Please file this as a bug in Issues · platformio/platform-ststm32 · GitHub.