Use <tab> instead of two spaces uniformly in the Makefile, even in the ifdefs. Gives it a nice consistent look.
Signed-off-by: Petr Baudis <[EMAIL PROTECTED]> --- commit aa6f095b0cd57ab424f02695ccfc8168f5c3b981 tree 046906d724925998ec7f47efc26bab7e84052014 parent ccf4810a5187b6f13b809e659870101e66d19807 author Petr Baudis <[EMAIL PROTECTED]> Fri, 05 Aug 2005 00:51:06 +0200 committer Petr Baudis <[EMAIL PROTECTED]> Fri, 05 Aug 2005 00:51:06 +0200 Makefile | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ PROG= git-update-cache git-diff-files git-update-server-info git-show-rev-cache git-build-rev-cache ifndef NO_CURL -PROG+= git-http-pull + PROG += git-http-pull endif LIB_FILE=libgit.a @@ -129,18 +129,18 @@ else OPENSSL_LIBSSL= endif ifdef MOZILLA_SHA1 - SHA1_HEADER="mozilla-sha1/sha1.h" - LIB_OBJS += mozilla-sha1/sha1.o + SHA1_HEADER="mozilla-sha1/sha1.h" + LIB_OBJS += mozilla-sha1/sha1.o else ifdef PPC_SHA1 - SHA1_HEADER="ppc/sha1.h" - LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o + SHA1_HEADER="ppc/sha1.h" + LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o else - SHA1_HEADER=<openssl/sha.h> + SHA1_HEADER=<openssl/sha.h> ifeq ($(shell uname -s),Darwin) - LIBS += -lcrypto -lssl + LIBS += -lcrypto -lssl else - LIBS += -lcrypto + LIBS += -lcrypto endif endif endif - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html