From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-5.5 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id AC5CF1F89C for ; Sun, 22 Jan 2017 02:42:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751001AbdAVCmN (ORCPT ); Sat, 21 Jan 2017 21:42:13 -0500 Received: from castro.crustytoothpaste.net ([75.10.60.170]:39234 "EHLO castro.crustytoothpaste.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750770AbdAVCmI (ORCPT ); Sat, 21 Jan 2017 21:42:08 -0500 Received: from genre.crustytoothpaste.net (unknown [IPv6:2001:470:b978:101:254c:7dd1:74c7:cde0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by castro.crustytoothpaste.net (Postfix) with ESMTPSA id 55314280B0; Sun, 22 Jan 2017 02:42:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=crustytoothpaste.net; s=default; t=1485052926; bh=Np78hdsRSfuH6iEcl0hzFrQq4STQxTWsvBbU73baXI8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Llvw6VGuiNFH9e34kJzJd4w8/MZFX3j/v6tP2/g3C/Z6DzaLU9ZC2KjwTNsxtzgiY Y/s/97gbJkmTPCt9RWpGFrH7/lTJXxsE/vVuUFHMmzv+Lesit/8YMLmE4EGOsEX6/N i40b7RKo7kMn8gf+wMaiMCd7JbwCKrkjzg39vvvdeQI3jivFhcV6TlRoxI42jXBoY8 qbaM9KNzj1eGTopLgzH4x0xLb1/6uBq/gGwrGDJcjaS1i+T4DslLxlEgd8YhbPp7GG k3AcWHps9VooWI0NQs/65wA/1cTZMFKcJpAyOAShev4ddSuLwB2xsQIXpJ//xfr6nH fqZ0n6RXtZTK2WR7KN5G9lTwtZf0hrTo4jc2zC2ZfteZrgCna+XrCmWTg48b98UxKb mV8E406xLAaU8SKBLa7tPtTGgG+6/Py6ZxSEdMVmdPHabSs2R2LfSQ1L9FLWrugH17 4ZdqaFqzMozMjlYCdXfzgsjd0kYh1D+fRtc2LCWYgZ1XNKB0OrW From: "brian m. carlson" To: git@vger.kernel.org Cc: Johannes Schindelin , Jeff King Subject: [PATCH v2 4/7] Documentation: sort sources for gitman.texi Date: Sun, 22 Jan 2017 02:41:53 +0000 Message-Id: <20170122024156.284180-5-sandals@crustytoothpaste.net> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170122024156.284180-1-sandals@crustytoothpaste.net> References: <20170122024156.284180-1-sandals@crustytoothpaste.net> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Sorting the sources makes it easier to compare the output using diff. In addition, it aids groups creating reproducible builds, as the order of the files is no longer dependent on the file system or other irrelevant factors. Signed-off-by: brian m. carlson --- Documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Makefile b/Documentation/Makefile index a9fb497b8..6e6c82409 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -373,7 +373,7 @@ user-manual.pdf: user-manual.xml gitman.texi: $(MAN_XML) cat-texi.perl $(QUIET_DB2TEXI)$(RM) $@+ $@ && \ - ($(foreach xml,$(MAN_XML),$(DOCBOOK2X_TEXI) --encoding=UTF-8 \ + ($(foreach xml,$(sort $(MAN_XML)),$(DOCBOOK2X_TEXI) --encoding=UTF-8 \ --to-stdout $(xml) &&) true) > $@++ && \ $(PERL_PATH) cat-texi.perl $@ <$@++ >$@+ && \ rm $@++ && \