git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Sort howto documents in howto-index.txt
@ 2012-12-22 18:34 Thomas Ackermann
  2012-12-22 19:40 ` Junio C Hamano
  2012-12-22 19:54 ` Aw: " Thomas Ackermann
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Ackermann @ 2012-12-22 18:34 UTC (permalink / raw)
  To: th.acker, git


Howto documents in howto-index.txt were listed in a rather
random order. So better sort them.

Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
---
 Documentation/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/Makefile b/Documentation/Makefile
index d7417b8..ff8ad9a 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -348,7 +348,7 @@ $(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml
 
 howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
 	$(QUIET_GEN)$(RM) $@+ $@ && \
-	'$(SHELL_PATH_SQ)' ./howto-index.sh $(wildcard howto/*.txt) >$@+ && \
+	'$(SHELL_PATH_SQ)' ./howto-index.sh $(sort $(wildcard howto/*.txt)) >$@+ && \
 	mv $@+ $@
 
 $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
-- 
1.8.0.msysgit.0



---
Thomas

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

* Re: [PATCH] Sort howto documents in howto-index.txt
  2012-12-22 18:34 [PATCH] Sort howto documents in howto-index.txt Thomas Ackermann
@ 2012-12-22 19:40 ` Junio C Hamano
  2012-12-22 19:54 ` Aw: " Thomas Ackermann
  1 sibling, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2012-12-22 19:40 UTC (permalink / raw)
  To: Thomas Ackermann; +Cc: git

Thomas Ackermann <th.acker@arcor.de> writes:

> Howto documents in howto-index.txt were listed in a rather
> random order. So better sort them.
>
> Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
> ---

I think $(wildcard) used to sort but in recent GNU make it no longer
does, so this is probably a good change.

Do we need to explicitly sort the api-index as well?  $(API_DOCS) is
fed to the script that reads filenames one at a time in the given
order, but I do not see anybody asking for a sorted list while
producing that list.  The result looks to be sorted in my build
farm with GNU make 3.82, but that could be by accident.

>  Documentation/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/Makefile b/Documentation/Makefile
> index d7417b8..ff8ad9a 100644
> --- a/Documentation/Makefile
> +++ b/Documentation/Makefile
> @@ -348,7 +348,7 @@ $(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml
>  
>  howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
>  	$(QUIET_GEN)$(RM) $@+ $@ && \
> -	'$(SHELL_PATH_SQ)' ./howto-index.sh $(wildcard howto/*.txt) >$@+ && \
> +	'$(SHELL_PATH_SQ)' ./howto-index.sh $(sort $(wildcard howto/*.txt)) >$@+ && \
>  	mv $@+ $@
>  
>  $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt

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

* Aw: Re: [PATCH] Sort howto documents in howto-index.txt
  2012-12-22 18:34 [PATCH] Sort howto documents in howto-index.txt Thomas Ackermann
  2012-12-22 19:40 ` Junio C Hamano
@ 2012-12-22 19:54 ` Thomas Ackermann
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Ackermann @ 2012-12-22 19:54 UTC (permalink / raw)
  To: gitster, th.acker; +Cc: git


> 
> I think $(wildcard) used to sort but in recent GNU make it no longer
> does, so this is probably a good change.
> 
> Do we need to explicitly sort the api-index as well?  $(API_DOCS) is
> fed to the script that reads filenames one at a time in the given
> order, but I do not see anybody asking for a sorted list while
> producing that list.  The result looks to be sorted in my build
> farm with GNU make 3.82, but that could be by accident.
> 

$(API_DOCS) is not fed to api-index.sh; it's only in the dependencies.
api-index.sh uses "ls api-*.txt" internally which produces a correct sorting.

Unifying api-index.sh and howto-index.sh is on my todo list ...


---
Thomas

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

end of thread, other threads:[~2012-12-22 19:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-22 18:34 [PATCH] Sort howto documents in howto-index.txt Thomas Ackermann
2012-12-22 19:40 ` Junio C Hamano
2012-12-22 19:54 ` Aw: " Thomas Ackermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).