summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-06-17 14:06:54 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-06-17 14:06:54 -0400
commit007639e2cfb3a7007242a0b344f2e58570e408fd (patch)
tree470b5afde08a1256b4d80cddcb800ec2f9f45972
parentc15e7aabaa3337065f6a7ed84cecb7ba8f91241a (diff)
@echo doesn't work in variabe def
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6d306b87..c0f9356f0 100644
--- a/Makefile
+++ b/Makefile
@@ -62,7 +62,7 @@ tags:
# If ikiwiki is available, build static html docs suitable for being
# shipped in the software package.
ifeq ($(shell which ikiwiki),)
-IKIWIKI=@echo "** ikiwiki not found, skipping building docs" >&2; true
+IKIWIKI=echo "** ikiwiki not found, skipping building docs" >&2; true
else
IKIWIKI=ikiwiki
endif