Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlinimon <linimon@users.noreply.github.com>2021-04-13 22:07:00 +0300
committerGitHub <noreply@github.com>2021-04-13 22:07:00 +0300
commit34326486e8a20c5f9dcefdd1deb513a752a86c37 (patch)
tree2fe3749188f7b0f2a49958a6943be06dc74c6111
parent1cc9856329ffae935194caea5871446cc7fd3805 (diff)
change Makefile identification for logfiles
With the switch to git, the logfile line starting with "Makefile ident" has become useless (ident(1) returns empty, as expected). To help people figure out which version of the port was run, switch it out for an ls -l of the Makefile itself.
-rw-r--r--src/share/poudriere/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/poudriere/common.sh b/src/share/poudriere/common.sh
index 26a8eb4f..0fe9954e 100644
--- a/src/share/poudriere/common.sh
+++ b/src/share/poudriere/common.sh
@@ -844,7 +844,7 @@ buildlog_start() {
echo "package name: ${pkgname}"
echo "building for: $(injail uname -a)"
echo "maintained by: ${mk_MAINTAINER}"
- echo "Makefile ident: $(ident -q ${mnt}/${portdir}/Makefile|sed -n '2,2p')"
+ echo "Makefile datestamp: $(ls -l ${mnt}/${portdir}/Makefile)"
echo "Poudriere version: ${POUDRIERE_VERSION}"
echo "Host OSVERSION: ${HOST_OSVERSION}"
echo "Jail OSVERSION: ${JAIL_OSVERSION}"