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

Piotr Kubaj (Code Review) gerrit at coreboot.org
Wed May 17 22:00:55 CEST 2017


Piotr Kubaj has uploaded a new change for review. ( 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>
---
M util/lint/lint
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/19745/1

diff --git a/util/lint/lint b/util/lint/lint
index 772d8bd..9f81524 100755
--- a/util/lint/lint
+++ b/util/lint/lint
@@ -30,7 +30,7 @@
 	exit 1
 fi
 
-LINTLOG=$(mktemp .tmpconfig.lintXXXXX);
+LINTLOG=$(mktemp .tmpconfig.lintXXXXXX);
 XMLFILE="$(dirname "$0")/junit.xml"
 FAILED=0;
 

-- 
To view, visit https://review.coreboot.org/19745
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0b80214dd83d21e12e16a5002c68127a7ca2e41b
Gerrit-PatchSet: 1
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Piotr Kubaj <pkubaj at anongoth.pl>



More information about the coreboot-gerrit mailing list