From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 209.51.188.0/24 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id C5BA31F5CB for ; Mon, 22 Apr 2019 02:26:07 +0000 (UTC) Received: from localhost ([127.0.0.1]:59548 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIOei-0006d4-3i for e@80x24.org; Sun, 21 Apr 2019 22:26:04 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53476) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIOeg-0006cz-Hx for dtas-all@nongnu.org; Sun, 21 Apr 2019 22:26:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIOef-0005QZ-Oy for dtas-all@nongnu.org; Sun, 21 Apr 2019 22:26:02 -0400 Received: from dcvr.yhbt.net ([2600:3c01::f03c:91ff:fe96:f5d6]:52186) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hIOef-0005Nc-Jm for dtas-all@nongnu.org; Sun, 21 Apr 2019 22:26:01 -0400 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id CF8AA1F5CB for ; Mon, 22 Apr 2019 02:25:51 +0000 (UTC) From: Eric Wong To: dtas-all@nongnu.org Subject: [PATCH] doc: remove inaccurate comment about "GNU-ism" Date: Mon, 22 Apr 2019 02:25:51 +0000 Message-Id: <20190422022551.12702-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2600:3c01::f03c:91ff:fe96:f5d6 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: duct tape audio suite List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+e=80x24.org@nongnu.org Sender: "dtas-all" touch(1posix) documents the presence of "-r" --- Documentation/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile index a483c0a..d3834f9 100644 --- a/Documentation/GNUmakefile +++ b/Documentation/GNUmakefile @@ -69,7 +69,7 @@ all :: txt =20 %.txt : %.pod $(pod2text) $< $@+ - touch -r $< $@+ 2>/dev/null || true # GNU-ism + touch -r $< $@+ mv $@+ $@ =20 clean:: --=20 EW