From ddd62f29aead215a39d937218ff3deafec129bd2 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 5 Dec 2013 18:38:11 -0500 Subject: [PATCH] remove spaces and tabs where 'make' complains about them spaces and tabs can have meaning in a Makefile, so stray ones can cause troubles. emacs makefile-mode warns about potentially troublesome errant whitespace. --- external/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/external/Makefile b/external/Makefile index 72da8a1b..6ecc3f60 100644 --- a/external/Makefile +++ b/external/Makefile @@ -98,7 +98,7 @@ libevent/Makefile: cp config.sub libevent cp config.guess libevent cd libevent && \ - CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS) -I$(EXTERNAL_ROOT)/include" LDFLAGS="$(LDFLAGS)" \ + CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS) -I$(EXTERNAL_ROOT)/include" LDFLAGS="$(LDFLAGS)" \ ./configure \ --host=$(HOST) \ --disable-shared @@ -128,7 +128,7 @@ iptables/Makefile: cp config.sub iptables cp config.guess iptables cd iptables && \ - CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS) -DNO_SHARED_LIBS -DXTABLES_INTERNAL -DIPTABLES_VERSION=\"1.4.10\" =-DXTABLES_VERSION=\"1.4.10\" # -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" -DXTABLES_LIBDIR -I$(EXTERNAL_ROOT)/include" LDFLAGS="$(LDFLAGS)" \ + CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS) -DNO_SHARED_LIBS -DXTABLES_INTERNAL -DIPTABLES_VERSION=\"1.4.10\" =-DXTABLES_VERSION=\"1.4.10\" # -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" -DXTABLES_LIBDIR -I$(EXTERNAL_ROOT)/include" LDFLAGS="$(LDFLAGS)" \ ./configure \ --host=$(HOST) \ --disable-shared @@ -267,7 +267,7 @@ simple-build-stamp: simple/bin/simple.jar simple: simple-build-stamp test -d bin || mkdir bin cp simple/bin/simple.jar bin - + simple-clean: - rm -f bin/simple.jar - rm -f simple-build-stamp @@ -289,7 +289,7 @@ jtorctl-build-stamp: jtorctl/bin/jtorctl.jar jtorctl: jtorctl-build-stamp test -d bin || mkdir bin cp jtorctl/bin/jtorctl.jar bin - + jtorctl-clean: -rm -rf jtorctl/bin -rm jtorctl-build-stamp