diff options
Diffstat (limited to 'pkg/build')
| -rw-r--r-- | pkg/build/freebsd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/build/freebsd.go b/pkg/build/freebsd.go index 5de09738a..4b403d587 100644 --- a/pkg/build/freebsd.go +++ b/pkg/build/freebsd.go @@ -54,7 +54,7 @@ options DIAGNOSTIC // because FreeBSD's build doesn't correctly order the two // targets. Its output is useful for debugging though, so // include it here. - return ImageDetails{}, osutil.PrependContext(string(output), err) + return ImageDetails{}, fmt.Errorf("%s: %w", string(output), err) } kernelObjDir := filepath.Join(objPrefix, params.KernelDir, |
