]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commit - Makefile
setup: fix spacing in error output messages from makefile
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 14 Apr 2008 13:52:21 +0000 (06:52 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 14 Apr 2008 13:52:21 +0000 (06:52 -0700)
commit6a112914aab749127ff210d1357ba5ed108b7a19
tree84f441638091f72139baf27a2bf19272f13d7573
parenta8b92f34a8c3e8cd5d97df70bc27b7e60a772d96
setup: fix spacing in error output messages from makefile
Looking over Brian's shoulder the other day, I saw a message that said "Please seedocs/install.html".
Looking at the source code of the Makefile, it seems like it should say

       @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see \
docs/install.html for help on installing dependencies."

instead of its current:

       @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see\
docs/install.html for help on installing dependencies."

But, I remember changing this more than once in the past, so either there is a different version of make somewhere which interprets trailing backslashes differently, or someone (possibly me) has repeatedly gotten confused about this issue.  Anyway, this time around, I'm trying:

       @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see docs/install.html for help on installing dependencies."

Even though it is > 80 chars.
Makefile