-
-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: don't fail build if pathname has space
Ideally, the build shouldn't care what is the pathname of the build directory. But some parts of the build process use, for historical reasons and for convenience, full pathnames, and some of that code did not correctly handle the case where the pathname might contain spaces, and the build fails. The fix is to use relative pathnames where it's easy, but where it's not, be more careful to quote the filename or avoid using the shell's argument splitting in Python code. Fixes #1034 for basic "make" and "scripts/build image=rogue", but some modules (e.g., Java) still don't build properly in this case and should be fixed separately. Signed-off-by: Nadav Har'El <[email protected]> Message-Id: <[email protected]>
- Loading branch information
Showing
4 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters