Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=jfbGmn2w; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=DTGwEUlK Received: by mail.netbsd.org (Postfix, from userid 605) id 1EE228501C; Sat, 20 Apr 2024 18:17:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713637056; bh=OeSj5xLqqmaX4ZLfz8ABJm4pQhrJfwEYgTzfduOA608=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=jfbGmn2wVNg4UacLKGc8KFr+1ko02Eb8yFNHfYkvdAZsRREFGCn/XRcfhh8XcfJYW UciA7tOd7sIk9lsplI29JrvHDu4NutupV0lFA35ShMzkk7JW9lz101PFIG3acgjcjb Xuhr+HLcdGFQY6U95R6CFWFMiqNyiz4cyFjjTjvY= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 330DA8506E for ; Sat, 20 Apr 2024 18:16:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 2kFykxCG43GY for ; Sat, 20 Apr 2024 18:16:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 63792D7C90 for ; Sat, 20 Apr 2024 08:03:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713600190; bh=OeSj5xLqqmaX4ZLfz8ABJm4pQhrJfwEYgTzfduOA608=; h=Date:From:Subject:To:Reply-To; b=DTGwEUlKdcydI3mOkCqc9M3jt8Dd5n5m7P+ltG2lQkn1RdkJY45ChIe1Lrtp1NEtW KxBmTwxLCie/9PW86KvQ5jbnO8/3gENSiU7XrZZlLWblBd2ULeCcJS8jw0SZ4Rz9ja O55ejO3xLkNm9VqLFSPXC4IeABJ6gdAAM5qMFNxE= Received: by cvs.NetBSD.org (Postfix, from userid 500) id C3C36FA2C; Sat, 20 Apr 2024 08:03:08 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sat, 20 Apr 2024 08:03:08 +0000 From: "Roland Illig" Subject: CVS commit: src/external/bsd/ntp/lib/libntp To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240420080308.C3C36FA2C@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Roland Illig" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: rillig Date: Sat Apr 20 08:03:08 UTC 2024 Modified Files: src/external/bsd/ntp/lib/libntp: Makefile Log Message: libntp: clean up MKREPRO_TIMESTAMP handling NetBSD's make has built-in support for formatting timestamps, so use that instead of relying on an external tool. The month name is still always in the C locale, and possible errors are reported in the affected line, due to the ':=' assignment operator. Without the ':=' assignment operator, the intermediate variable would not be necessary, but in that case, make's error handling is broken and unspecific. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/external/bsd/ntp/lib/libntp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.