summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2015-12-23 00:27:36 (GMT)
committerTony Theodore <tonyt@logyst.com>2015-12-23 00:27:36 (GMT)
commita8baf2203f5ee709e45c00c474ca10982aea7844 (patch)
tree5e4338da2dbc7bee6a0d74863b7930a5f03c9bb1
parente4b94f396ff607e3d61704b91d6b81c8254f2916 (diff)
parent5ebcb2ebde350e2840928dc2dcf3663feff93dda (diff)
downloadmxe-a8baf2203f5ee709e45c00c474ca10982aea7844.zip
mxe-a8baf2203f5ee709e45c00c474ca10982aea7844.tar.gz
mxe-a8baf2203f5ee709e45c00c474ca10982aea7844.tar.bz2
Merge pull request #1097 from tonytheodore/dollar
Makefile: error on paths with dollar signs
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1f43900..120cba6 100644
--- a/Makefile
+++ b/Makefile
@@ -230,6 +230,11 @@ ifneq ($(words $(PWD)),1)
$(error GNU Make chokes on paths with spaces)
endif
+# dollar signs also cause troubles
+ifneq (,$(findstring $$,$(PWD)))
+ $(error GNU Make chokes on paths with dollar signs)
+endif
+
ifeq ($(IGNORE_SETTINGS),yes)
$(info [ignore settings.mk])
else ifeq ($(wildcard $(PWD)/settings.mk),$(PWD)/settings.mk)