From 2181ef35e17d97286cfe7edad5d4d68c225922d9 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 3 Jul 2017 14:43:37 +0200 Subject: pkg/osutil: don't depend on syscall in appengine build Dashboard app now depends on osutil through config package. Reshuffle functions so that the package does not depend on syscall in appengine build. --- pkg/osutil/fileutil_linux.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/osutil/fileutil_linux.go') diff --git a/pkg/osutil/fileutil_linux.go b/pkg/osutil/fileutil_linux.go index 415c00353..f1a0c1b66 100644 --- a/pkg/osutil/fileutil_linux.go +++ b/pkg/osutil/fileutil_linux.go @@ -1,6 +1,8 @@ // 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. +// +build !appengine + package osutil import ( -- cgit mrf-deployment