From 4dbd403fd0978b91ffe3bb2f2a749511591644dd Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 8 May 2024 12:24:46 +0200 Subject: pkg/csource: replace go:generate with go:embed go:embed is a more modern way to do this and it does not require a special Makefile step. Since go:embed cannot use paths that contains "..", the actual embeding is moved to executor package. --- executor/stub.go | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 executor/stub.go (limited to 'executor/stub.go') diff --git a/executor/stub.go b/executor/stub.go deleted file mode 100644 index 9b6ab882e..000000000 --- a/executor/stub.go +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright 2017 syzkaller project authors. All rights reserved. -// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. - -// Just to make cross-compilation tests work, -// otherwise they fail with "no buildable Go source files". - -package executor -- cgit mrf-deployment