From owner-dev-commits-src-all@freebsd.org Mon Sep 6 14:49:04 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D67046764C1; Mon, 6 Sep 2021 14:49:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4H3B9r5mWQz3rDQ; Mon, 6 Sep 2021 14:49:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A5CAD20C36; Mon, 6 Sep 2021 14:49:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 186En40U073970; Mon, 6 Sep 2021 14:49:04 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 186En4cG073969; Mon, 6 Sep 2021 14:49:04 GMT (envelope-from git) Date: Mon, 6 Sep 2021 14:49:04 GMT Message-Id: <202109061449.186En4cG073969@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Edward Tomasz Napierala Subject: git: 439aa5872860 - main - iconv: Fix "make make-ref" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: trasz X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 439aa5872860f5e1d634433161a64f60dacfda7d Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Sep 2021 14:49:04 -0000 The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=439aa5872860f5e1d634433161a64f60dacfda7d commit 439aa5872860f5e1d634433161a64f60dacfda7d Author: Edward Tomasz Napierala AuthorDate: 2021-09-06 14:47:30 +0000 Commit: Edward Tomasz Napierala CommitDate: 2021-09-06 14:47:35 +0000 iconv: Fix "make make-ref" The purpose of this command is to "refresh" the source reference files generated with GNU libiconv, located in tools/test/iconv/ref/. Previously it would generate copies somewhere in OBJDIR, which we don't use. Reviewed By: allanjude Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D31820 --- tools/test/iconv/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test/iconv/Makefile b/tools/test/iconv/Makefile index 3b74be06aac6..6f390d4deb4d 100644 --- a/tools/test/iconv/Makefile +++ b/tools/test/iconv/Makefile @@ -39,9 +39,9 @@ make-ref: refgen mkdir -p ref .for enc in ${ENCODING} @echo "Generating ${enc} --> UTF-32 ..." - -@${REF_FWD} ${enc} >ref/${enc} + -@${REF_FWD} ${enc} >${.CURDIR}/ref/${enc} @echo "Generating UTF-32 --> ${enc} ..." - -@${REF_REV} ${enc} >ref/${enc}-rev + -@${REF_REV} ${enc} >${.CURDIR}/ref/${enc}-rev .endfor check: tablegen