summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJon Long <jonlong@cs.berkeley.edu>2015-02-24 23:00:27 -0800
committerJon Long <jonlong@cs.berkeley.edu>2015-02-24 23:00:27 -0800
commitb9aa166526cdfec7dcb83fd6fce342cd8c6c3153 (patch)
treee135d0f998a22dc010c43c1217e4e320296c6da2 /Makefile
parent3a1195a756b135f29a5d98f82f89a0c47dee97c7 (diff)
parentd2beb8ab20b55aebd25a2fb1f3eed3cf2923efaa (diff)
downloadcaffeonacl-b9aa166526cdfec7dcb83fd6fce342cd8c6c3153.tar.gz
caffeonacl-b9aa166526cdfec7dcb83fd6fce342cd8c6c3153.tar.bz2
caffeonacl-b9aa166526cdfec7dcb83fd6fce342cd8c6c3153.zip
Merge pull request #1960 from gustavla/makefile_fix
Replaced illegal tab in Makefile with spaces.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 933e9be9..cb396794 100644
--- a/Makefile
+++ b/Makefile
@@ -261,7 +261,8 @@ ifneq (,$(findstring clang++,$(CXX)))
else ifneq (,$(findstring g++,$(CXX)))
STATIC_LINK_COMMAND := -Wl,--whole-archive $(STATIC_NAME) -Wl,--no-whole-archive
else
- $(error Cannot static link with the $(CXX) compiler.)
+ # The following line must not be indented with a tab, since we are not inside a target
+ $(error Cannot static link with the $(CXX) compiler)
endif
# Debugging