[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-NG] [PATCH 24/26] [ng] texi: "de-prettify" makeinfo command li
From: |
Stefano Lattarini |
Subject: |
[Automake-NG] [PATCH 24/26] [ng] texi: "de-prettify" makeinfo command line |
Date: |
Sat, 16 Jun 2012 23:30:11 +0200 |
This will make some future changes easier. And anyway, it's usually not
worth to add code complexity to have a slightly pretty output from make;
people who want pretty output should be using "make V=0" anyway ;-)
* automake.in (handle_texinfo_helper): Make definition of $makeinfoflags
less pretty but more easy.
Signed-off-by: Stefano Lattarini <address@hidden>
---
automake.in | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/automake.in b/automake.in
index 1f12093..e4001b6 100644
--- a/automake.in
+++ b/automake.in
@@ -3007,10 +3007,7 @@ sub handle_texinfo_helper ($)
push_dist_common ('$(' . $canonical . '_TEXINFOS)');
}
- my $sdir = dirname $texi;
- my $makeinfoflags = ($sdir eq '.' && dirname ($out_file) eq '.')
- ? '-I $(srcdir)'
- : "-I $sdir -I \$(srcdir)/$sdir";
+ my $makeinfoflags = '-I $(@D) -I $(srcdir)/$(@D)';
(my $dpfx = $out_file) =~ s/\.info$//;
$output_rules .= file_contents ('texi-spec',
--
1.7.9.5
- Re: [Automake-NG] [PATCH 18/26] [ng] coverage: texinfo input files using @include directives, (continued)
- [Automake-NG] [PATCH 19/26] [ng] automake: remove two unused variables from '&handle_texinfo_source', Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 21/26] [ng] texi: move some more knowledge from automake to texi-spec.am, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 22/26] [ng] texi: simplify handle_texinfo_source by assuming '.info' suffix ..., Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 23/26] [ng] automake: merge handle_texinfo_source() -> handle_texinfo_helper(), Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 20/26] [ng] texi: in texi-spec.am, assume suffix for info files is always '.info', Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 24/26] [ng] texi: "de-prettify" makeinfo command line,
Stefano Lattarini <=
- [Automake-NG] [PATCH 25/26] [ng] texi: move more code from automake to Makefile, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 26/26] [ng] texi: remove some crufty code to support obsolete environment, Stefano Lattarini, 2012/06/16
- [Automake-NG] [PATCH 27/26] [ng] tests: rename silent8.sh -> silent-info.sh, Stefano Lattarini, 2012/06/17
- [Automake-NG] [PATCH 28/26] [ng] coverage: texinfo silent rules with a subdir texinfo file, Stefano Lattarini, 2012/06/17
- [Automake-NG] [PATCH 29/26] [ng] texi: drop support for '.txi' and '.texinfo' suffixes, Stefano Lattarini, 2012/06/17