Compare commits

...

1 Commits

Author SHA1 Message Date
Ludovic Fernandez
24db786bb6 fix: exclude syslog for windows, nacl, and plan9. 2019-07-24 18:58:04 -07:00
3 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ import (
"text/template" "text/template"
) )
const model = `// +build {{.CurrentGoVersion}},!{{.NextGoVersion}} const model = `// +build {{.CurrentGoVersion}},!{{.NextGoVersion}}{{if eq .PkgName "log/syslog"}},!windows,!nacl,!plan9{{end}}
package {{.Dest}} package {{.Dest}}

View File

@@ -1,4 +1,4 @@
// +build go1.11,!go1.12 // +build go1.11,!go1.12,!windows,!nacl,!plan9
package stdlib package stdlib

View File

@@ -1,4 +1,4 @@
// +build go1.12,!go1.13 // +build go1.12,!go1.13,!windows,!nacl,!plan9
package stdlib package stdlib