diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-10-21 02:00:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-10-21 02:00:11 +0000 |
commit | 43f34a93e6d61d206126b47c92d999b286f5a7c8 (patch) | |
tree | 0366cf1d155f0ca36d0fe26c5cede022653f549b /Makefile | |
parent | f1f388d52707cb74a23f35ccf208fdf064712c11 (diff) | |
download | mtk-20170518-43f34a93e6d61d206126b47c92d999b286f5a7c8.zip mtk-20170518-43f34a93e6d61d206126b47c92d999b286f5a7c8.tar.gz mtk-20170518-43f34a93e6d61d206126b47c92d999b286f5a7c8.tar.bz2 |
Makefile: add a check to bail out early when the path to the openwrt directory contains spaces (#12344)
SVN-Revision: 33884
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -11,6 +11,10 @@ LC_ALL:=C LANG:=C export TOPDIR LC_ALL LANG +empty:= +space:= $(empty) $(empty) +$(if $(findstring $(space),$(TOPDIR)),$(error ERROR: The path to the OpenWrt directory must not include any spaces)) + world: include $(TOPDIR)/include/host.mk |