Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Jan 2021 19:39:01 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 95ae95d413bd - main - pkgbase: limit PKG_VERSION_FROM calculation to real-update-packages
Message-ID:  <202101181939.10IJd1da043894@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=95ae95d413bdbab9b7360d190a81c18aadf440f7

commit 95ae95d413bdbab9b7360d190a81c18aadf440f7
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2021-01-18 19:34:54 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2021-01-18 19:34:54 +0000

    pkgbase: limit PKG_VERSION_FROM calculation to real-update-packages
    
    PKG_ABI is defined in some other targets that do not need to shell out and
    calculate PKG_VERSION_FROM. Moreover, it produces extra errors when
    bootstrapping an initial pkgbase repo, as the /latest link doesn't exist
    yet.
---
 Makefile.inc1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc1 b/Makefile.inc1
index f77fe5cfa25c..bb3d2f98f4a3 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1872,7 +1872,7 @@ _pkgbootstrap: .PHONY
 PKG_ABI!=${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI
 .endif
 
-.if !defined(PKG_VERSION_FROM)
+.if !defined(PKG_VERSION_FROM) && make(real-update-packages)
 .if defined(PKG_ABI)
 PKG_VERSION_FROM!=/usr/bin/readlink ${REPODIR}/${PKG_ABI}/latest
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101181939.10IJd1da043894>