lywind opened a new pull request, #9307: URL: https://github.com/apache/nuttx/pull/9307
The "CONFIG_APPS_DIR" generated in .config has double quotes and is not recognized as a path by most make systems. This commits removes these double quotes to make the compile successfully. ## Summary The "CONFIG_APPS_DIR" generated in .config has double quotes. For example, by default "CONFIG_APPS_DIR" is: CONFIG_APPS_DIR="../apps" And thus when the make system expands "$(CONFIG_APPS_DIR)\Makefile", it will expand as "../apps"\Makefile And this path is not recognized by most make systems in windows (The make.exe in GnuWin32 recognizes this kind of path, but this program is quite out dated and tend to have other problems) and will result the APPDIR to be empty and thus the whole apps directory will not be built. ## Impact * The build system when "CONFIG_WINDOWS_NATIVE=y" is defined. ## Testing * sim:ostest * s32k144evb -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
