[coreboot-gerrit] Change in coreboot[master]: util/lint: Fix execution on OpenBSD

Philipp Deppenwiese (Code Review) gerrit at coreboot.org
Tue Apr 17 00:19:12 CEST 2018


Philipp Deppenwiese has submitted this change and it was merged. ( https://review.coreboot.org/19745 )

Change subject: util/lint: Fix execution on OpenBSD
......................................................................

util/lint: Fix execution on OpenBSD

util/lint/lint creates a file using mktemp.
mktemp on OpenBSD requires at least 6 X's, while only 5 are in the template.

Change-Id: I0b80214dd83d21e12e16a5002c68127a7ca2e41b
Signed-off-by: Piotr Kubaj <pkubaj at anongoth.pl>
Reviewed-on: https://review.coreboot.org/19745
Tested-by: build bot (Jenkins) <no-reply at coreboot.org>
Reviewed-by: Paul Menzel <paulepanter at users.sourceforge.net>
Reviewed-by: Philippe Mathieu-Daudé <f4bug at amsat.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki at gmail.com>
---
M util/lint/lint
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  build bot (Jenkins): Verified
  Paul Menzel: Looks good to me, but someone else must approve
  Philipp Deppenwiese: Looks good to me, approved
  Philippe Mathieu-Daudé: Looks good to me, but someone else must approve



diff --git a/util/lint/lint b/util/lint/lint
index 0cbe010..253a6e6 100755
--- a/util/lint/lint
+++ b/util/lint/lint
@@ -31,7 +31,7 @@
 	exit 1
 fi
 
-LINTLOG=$(mktemp .tmpconfig.lintXXXXX);
+LINTLOG=$(mktemp .tmpconfig.lintXXXXXX);
 XMLFILE="$(dirname "$0")/junit.xml"
 if [ "$1" = "lint-extended" ]; then
 	XMLFILE="$(dirname "$0")/extended-junit.xml"

-- 
To view, visit https://review.coreboot.org/19745
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I0b80214dd83d21e12e16a5002c68127a7ca2e41b
Gerrit-Change-Number: 19745
Gerrit-PatchSet: 2
Gerrit-Owner: Piotr Kubaj <pkubaj at anongoth.pl>
Gerrit-Reviewer: Paul Menzel <paulepanter at users.sourceforge.net>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki at gmail.com>
Gerrit-Reviewer: Philippe Mathieu-Daudé <f4bug at amsat.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply at coreboot.org>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180416/c28b9e26/attachment.html>


More information about the coreboot-gerrit mailing list