All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] build: delete useless characters
@ 2014-04-16 16:10 Arturo Borrero Gonzalez
  2014-04-16 16:32 ` Patrick McHardy
  0 siblings, 1 reply; 5+ messages in thread
From: Arturo Borrero Gonzalez @ 2014-04-16 16:10 UTC (permalink / raw)
  To: netfilter-devel; +Cc: pablo

There are a lot of '-e' that seem useless in the build system.

Previous to this patch:
  [...]
  -e CC		src/evaluate.c
  -e CC		src/expression.c
  -e CC		src/proto.c
  [...]


With this patch:
  [...]
  CC		src/evaluate.c
  CC		src/expression.c
  CC		src/proto.c
  [...]

Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
 Makefile.rules.in |   20 ++++++++++----------
 doc/Makefile.in   |    4 ++--
 files/Makefile.in |    2 +-
 3 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/Makefile.rules.in b/Makefile.rules.in
index 6a00916..53ba7e9 100644
--- a/Makefile.rules.in
+++ b/Makefile.rules.in
@@ -12,16 +12,16 @@ configure:		configure.ac
 			sh configure
 
 %.o:			%.c	$(makedeps)
-			@echo -e "  CC\t\t$<"
+			@echo	"  CC\t\t$<"
 			$(CC) $(CFLAGS) -c -o $@ $<
 
 .%.d:			%.c	$(makedeps)
-			@echo -e "  DEP\t\t$<"
+			@echo	"  DEP\t\t$<"
 			$(RM) $@
 			$(CC) -M $(CFLAGS) $< | sed 's,$(*F)\.o[ :]*,$*.o $@ : ,g' > $@
 
 %.c %.h:		%.y	$(makedeps)
-			@echo -e "  YACC\t\t$<"
+			@echo	"  YACC\t\t$<"
 			$(YACC) $(YACCFLAGS) --defines=$*.h.tmp -o $@ $<
 			( \
 				echo "#ifndef __$(*F)_H"; \
@@ -32,15 +32,15 @@ configure:		configure.ac
 			$(RM) $*.h.tmp
 
 %.c %.h:		%.l	$(makedeps)
-			@echo -e "  LEX\t\t$<"
+			@echo	"  LEX\t\t$<"
 			$(LEX) -t --header-file=$(<:.l=.h) $< > $@
 
 %.8:			%.xml	$(makedeps)
-			@echo -e "  MAN\t\t$@"
+			@echo	"  MAN\t\t$@"
 			(cd $(SUBDIR); $(DB2MAN) --xinclude ../$<)
 
 %.pdf:			%.xml	$(makedeps)
-			@echo -e "  PDF\t\t$@"
+			@echo	"  PDF\t\t$@"
 			dblatex -q -t pdf -o $@ $<
 
 archive:
@@ -54,19 +54,19 @@ $(1)-extra-clean-files	:= $$(patsubst %,$(SUBDIR)%,$$($(1)-extra-clean-files))
 depfiles		:= $$(patsubst $(SUBDIR)%.o,$(SUBDIR).%.d,$$($(1)-obj))
 
 $(SUBDIR)$(1):		$$($(1)-extra-targets) $$($(1)-obj)
-			@echo -e "  LD\t\t$$@"
+			@echo	"  LD\t\t$$@"
 			$$(CC) $$($(1)-obj) $$(LDFLAGS) -o $$@
 all_targets		+= $(SUBDIR)$(1)
 
 .PHONY:			$(1)-clean
 $(1)-clean:
-			@echo -e "  CLEAN\t\t$(1)"
+			@echo	"  CLEAN\t\t$(1)"
 			$$(RM) $$($(1)-obj) $$(depfiles) $$($(1)-extra-clean-files) $(SUBDIR)$(1)
 clean_targets		+= $(1)-clean
 
 .PHONY:			$(1)-install
 $(1)-install:
-			@echo -e "  INSTALL\t$1"
+			@echo	"  INSTALL\t$1"
 			$(MKDIR_P) $$(DESTDIR)/$$($(1)-destdir)
 			$(INSTALL) -m 755 -p \
 				$(SUBDIR)$(1) \
@@ -92,5 +92,5 @@ install:		all $(SUBDIRS) $(install_targets)
 
 .PHONY: $(SUBDIRS)
 $(SUBDIRS):
-			@echo -e "  SUBDIR\t$@/"
+			@echo	"  SUBDIR\t$@/"
 			@$(MAKE) -s -f Makefile.rules $(MAKECMDGOALS) SUBDIR="$@/" SUBDIRS=""
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 1ec856c..660172d 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -3,11 +3,11 @@ pdfdocs-@CONFIG_PDF@	+= doc/nft.pdf
 
 all:		$(mandocs-y) $(pdfdocs-y)
 clean:
-		@echo -e "  CLEAN\t\tdoc"
+		@echo	"  CLEAN\t\tdoc"
 		$(RM) $(mandocs-y) $(pdfdocs-y)
 
 install:	$(mandocs-y) $(pdfdocs-y)
-		@echo -e "  INSTALL\tdoc"
+		@echo	"  INSTALL\tdoc"
 		if test -n "$(mandocs-y)"; then \
 			$(MKDIR_P) $(DESTDIR)/${mandir}/man8 ;\
 			$(INSTALL) -m 755 -p $(mandocs-y) \
diff --git a/files/Makefile.in b/files/Makefile.in
index dc237e2..1b6dbc2 100644
--- a/files/Makefile.in
+++ b/files/Makefile.in
@@ -1,5 +1,5 @@
 install:
-	@echo -e "  INSTALL\tfiles"
+	@echo	"  INSTALL\tfiles"
 	$(MKDIR_P) $(DESTDIR)/$(confdir)
 	$(INSTALL) -m 755 -p $(SUBDIR)nftables/* $(DESTDIR)/$(confdir)/
 	$(SED) -i "s~#\! nft~#\!@sbindir@/nft~" $(DESTDIR)/$(confdir)/*


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] build: delete useless characters
  2014-04-16 16:10 [PATCH] build: delete useless characters Arturo Borrero Gonzalez
@ 2014-04-16 16:32 ` Patrick McHardy
  2014-04-16 16:38   ` Arturo Borrero Gonzalez
  0 siblings, 1 reply; 5+ messages in thread
From: Patrick McHardy @ 2014-04-16 16:32 UTC (permalink / raw)
  To: Arturo Borrero Gonzalez; +Cc: netfilter-devel, pablo

On Wed, Apr 16, 2014 at 06:10:38PM +0200, Arturo Borrero Gonzalez wrote:
> There are a lot of '-e' that seem useless in the build system.
> 
> Previous to this patch:
>   [...]
>   -e CC		src/evaluate.c
>   -e CC		src/expression.c
>   -e CC		src/proto.c
>   [...]
> 
> 
> With this patch:
>   [...]
>   CC		src/evaluate.c
>   CC		src/expression.c
>   CC		src/proto.c
>   [...]

I assume you're on debian? The -e is needed to interpret the backslash
sequences like \t. Something is broken about the echo command in debian,
I'd assume its using the shell internal one instead of /bin/echo.

This needs to be fixed differently:

  CC\t\tsrc/main.c
  CC\t\tsrc/cli.c
  CC\t\tsrc/rule.c
  CC\t\tsrc/statement.c
  CC\t\tsrc/datatype.c
  CC\t\tsrc/expression.c
  CC\t\tsrc/evaluate.c
  CC\t\tsrc/proto.c
  CC\t\tsrc/payload.c
  CC\t\tsrc/exthdr.c
  CC\t\tsrc/meta.c
  CC\t\tsrc/ct.c
  CC\t\tsrc/netlink.c
  CC\t\tsrc/netlink_linearize.c
  CC\t\tsrc/netlink_delinearize.c
  CC\t\tsrc/segtree.c
  CC\t\tsrc/rbtree.c
  CC\t\tsrc/gmputil.c
  CC\t\tsrc/utils.c
  CC\t\tsrc/erec.c
  CC\t\tsrc/mnl.c
  CC\t\tsrc/hipac.c
  CC\t\tsrc/parser.c
  CC\t\tsrc/scanner.c


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] build: delete useless characters
  2014-04-16 16:32 ` Patrick McHardy
@ 2014-04-16 16:38   ` Arturo Borrero Gonzalez
  2014-04-16 16:50     ` Patrick McHardy
  0 siblings, 1 reply; 5+ messages in thread
From: Arturo Borrero Gonzalez @ 2014-04-16 16:38 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: Netfilter Development Mailing list, Pablo Neira Ayuso

On 16 April 2014 18:32, Patrick McHardy <kaber@trash.net> wrote:
>
> I assume you're on debian? The -e is needed to interpret the backslash
> sequences like \t. Something is broken about the echo command in debian,
> I'd assume its using the shell internal one instead of /bin/echo.
>

Yes, you are right. Then forget this patch.

I was reading a bit the build system, wondering how to get the actual
form of the CC commands.

regards.
-- 
Arturo Borrero González
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] build: delete useless characters
  2014-04-16 16:38   ` Arturo Borrero Gonzalez
@ 2014-04-16 16:50     ` Patrick McHardy
  2014-04-18 12:36       ` Jan Engelhardt
  0 siblings, 1 reply; 5+ messages in thread
From: Patrick McHardy @ 2014-04-16 16:50 UTC (permalink / raw)
  To: Arturo Borrero Gonzalez
  Cc: Netfilter Development Mailing list, Pablo Neira Ayuso

On Wed, Apr 16, 2014 at 06:38:50PM +0200, Arturo Borrero Gonzalez wrote:
> On 16 April 2014 18:32, Patrick McHardy <kaber@trash.net> wrote:
> >
> > I assume you're on debian? The -e is needed to interpret the backslash
> > sequences like \t. Something is broken about the echo command in debian,
> > I'd assume its using the shell internal one instead of /bin/echo.
> >
> 
> Yes, you are right. Then forget this patch.
> 
> I was reading a bit the build system, wondering how to get the actual
> form of the CC commands.

Try using the full path to echo perhaps.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] build: delete useless characters
  2014-04-16 16:50     ` Patrick McHardy
@ 2014-04-18 12:36       ` Jan Engelhardt
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2014-04-18 12:36 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: Arturo Borrero Gonzalez, Netfilter Development Mailing list,
	Pablo Neira Ayuso

On Wednesday 2014-04-16 18:50, Patrick McHardy wrote:

>On Wed, Apr 16, 2014 at 06:38:50PM +0200, Arturo Borrero Gonzalez wrote:
>> On 16 April 2014 18:32, Patrick McHardy <kaber@trash.net> wrote:
>> >
>> > I assume you're on debian? The -e is needed to interpret the backslash
>> > sequences like \t. Something is broken about the echo command in debian,
>> > I'd assume its using the shell internal one instead of /bin/echo.
>> >
>> 
>> Yes, you are right. Then forget this patch.
>> 
>> I was reading a bit the build system, wondering how to get the actual
>> form of the CC commands.
>
>Try using the full path to echo perhaps.

What about the automake patch I sent some months back? It would address 
the issue in a fashion that's also compatible with variants of sh/echo 
that do not support -e/-n.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-04-18 12:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-16 16:10 [PATCH] build: delete useless characters Arturo Borrero Gonzalez
2014-04-16 16:32 ` Patrick McHardy
2014-04-16 16:38   ` Arturo Borrero Gonzalez
2014-04-16 16:50     ` Patrick McHardy
2014-04-18 12:36       ` Jan Engelhardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.