[jhbuild] install: remove indentation to comment, so it doesn't get printed



commit aea1e9611aeec266d761736b159b72677d76ccc5
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Tue Sep 17 18:54:36 2013 +0200

    install: remove indentation to comment, so it doesn't get printed
    
    In Makefiles, if a comment starts with the tab, it will get printed to
    the output like if it was an echo statement. Fix this, to avoid confusing
    the people at 'make install' (as this is a comment to clarify the
    subsequent lines of code, not a comment for the jhbuild user).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=706518

 Makefile.plain |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/Makefile.plain b/Makefile.plain
index 761d067..e90813b 100644
--- a/Makefile.plain
+++ b/Makefile.plain
@@ -38,9 +38,9 @@ install: include-check install-check
 
        install -m755 install-check $(bindir)/install-check
 
-       # if ~/bin/jbuild exists, it is most likely an old version, and it will
-       # not work; so rename it and install a symlink to the new version
-       # instead.
+# if ~/bin/jbuild exists, it is most likely an old version, and it will
+# not work; so rename it and install a symlink to the new version
+# instead.
        @if [ -e "$(HOME)/bin/jhbuild" ] && [ ! $(bindir) -ef $(HOME)/bin ]; then \
                mv "$(HOME)/bin/jhbuild" "$(HOME)/bin/jhbuild.old" ; \
                ln -s $(bindir)/jhbuild "$(HOME)/bin/jhbuild" ; \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]