]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
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)
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

index 589d19e8385cfa304047ed1623f242f5c5664ad2..6715ed752802efda702fb1a496558acb0a9da434 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -125,8 +125,7 @@ endif
 signal-error-deps:
        @echo
        @echo
-       @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see\
-docs/install.html for help on installing dependencies."
+       @echo "ERROR: Not all of Tahoe's dependencies are in place.  Please see docs/install.html for help on installing dependencies."
        @echo
        @echo
        exit 1
@@ -142,8 +141,7 @@ signal-error-twisted-dep:
 signal-error-pywin32-dep:
        @echo
        @echo
-       @echo "ERROR: the pywin32 dependency is not in place.  Please see docs/install.html for\
-help on installing dependencies."
+       @echo "ERROR: the pywin32 dependency is not in place.  Please see docs/install.html for help on installing dependencies."
        @echo
        @echo
        exit 1
@@ -185,13 +183,11 @@ TEST=allmydata
 # suppress the ansi color sequences
 
 test: .built .checked-deps src/allmydata/_version.py
-       $(PP) \
-        $(TRIAL) $(TRIALARGS) $(TEST)
+       $(PP) $(TRIAL) $(TRIALARGS) $(TEST)
 
 test-figleaf: .built .checked-deps
        rm -f .figleaf
-       $(PP) \
-        $(TRIAL) --reporter=bwverbose-figleaf $(TEST)
+       $(PP) $(TRIAL) --reporter=bwverbose-figleaf $(TEST)
 
 figleaf-output:
        $(PP) \
@@ -224,8 +220,7 @@ upload-figleaf:
 endif
 
 .figleaf.el: .figleaf
-       $(PP) \
-        $(PYTHON) misc/figleaf2el.py .figleaf src
+       $(PP) $(PYTHON) misc/figleaf2el.py .figleaf src
 
 pyflakes:
        $(PYTHON) -OOu `which pyflakes` src/allmydata |sort |uniq
@@ -447,4 +442,3 @@ mac-dbg:
 .PHONY: stats-gatherer-run
 stats-gatherer-run:
        cd stats_gatherer && $(PP) $(PYTHON) ../src/allmydata/stats.py
-