diff options
author | midipix <writeonce@midipix.org> | 2020-01-09 07:45:56 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-09 07:49:47 +0000 |
commit | 69c914d0626989d44eb3b5e89cca7081800ed57b (patch) | |
tree | 26b849ad7a414a18bf9b9b375b51be57fdce771c | |
parent | 1e5359d0737a021753fdfe64a158b93bb1284188 (diff) | |
download | u16ports-69c914d0626989d44eb3b5e89cca7081800ed57b.tar.bz2 u16ports-69c914d0626989d44eb3b5e89cca7081800ed57b.tar.xz |
build system: configure: verify_source_directory(): disallow spaces in path.
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -288,6 +288,13 @@ verify_source_directory() { output_step_prolog ${mb_script} 'verify_source_directory' + if [ _"$mb_source_dir" != _${mb_source_dir##* } ]; then + error_msg "source directory path contains spaces, aborting." + exit 1 + fi + + eval mb_source_dir=$(printf '%s' "$mb_source_dir") + if [ -z "$mb_source_dir" ]; then if [ _$mb_require_source_dir = _yes ]; then error_msg "$mb_package: specifying an external source directory is required." |