[#1293] Fix bug that the package name is mismatched w/ contrib

This commit is contained in:
cchung100m
2025-03-27 20:50:44 +08:00
committed by Ron Evans
parent beac0b62b8
commit 9fe207295f
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
//go:build !customenv && opencvstatic && linux
package gocv
package contrib
// Changes here should be mirrored in contrib/cgo_static.go and cuda/cgo_static.go.

View File

@@ -1,6 +1,6 @@
//go:build !customenv && opencvstatic && darwin
package gocv
package contrib
// Changes here should be mirrored in contrib/cgo_static_darwin.go and cuda/cgo_static_darwin.go.

View File

@@ -1,6 +1,6 @@
//go:build !customenv && opencvstatic && windows
package gocv
package contrib
// Changes here should be mirrored in contrib/cgo_static_windows.go and cuda/cgo_static_windows.go.