Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove deprecated build flags syntax #3930

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion internal/externalcmd/cmd_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !windows
// +build !windows

package externalcmd

Expand Down
1 change: 0 additions & 1 deletion internal/externalcmd/cmd_win.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build windows
// +build windows

package externalcmd

Expand Down
1 change: 0 additions & 1 deletion internal/logger/syslog_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !windows
// +build !windows

package logger

Expand Down
1 change: 0 additions & 1 deletion internal/logger/syslog_win.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build windows
// +build windows

package logger

Expand Down
1 change: 0 additions & 1 deletion internal/rlimit/rlimit_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !windows
// +build !windows

// Package rlimit contains a function to raise rlimit.
package rlimit
Expand Down
1 change: 0 additions & 1 deletion internal/rlimit/rlimit_win.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build windows
// +build windows

package rlimit

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/camera.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build (linux && arm) || (linux && arm64)
// +build linux,arm linux,arm64

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/camera_disabled.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !linux || (!arm && !arm64)
// +build !linux !arm,!arm64

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/component.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build (linux && arm) || (linux && arm64)
// +build linux,arm linux,arm64

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/component_32.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build linux && arm
// +build linux,arm

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/component_64.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build linux && arm64
// +build linux,arm64

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/params_serialize.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build (linux && arm) || (linux && arm64)
// +build linux,arm linux,arm64

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/staticsources/rpicamera/pipe.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build (linux && arm) || (linux && arm64)
// +build linux,arm linux,arm64

package rpicamera

Expand Down
1 change: 0 additions & 1 deletion internal/testhighlevel/build_images_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build enable_highlevel_tests
// +build enable_highlevel_tests

package testhighlevel

Expand Down
1 change: 0 additions & 1 deletion internal/testhighlevel/hls_manager_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build enable_highlevel_tests
// +build enable_highlevel_tests

package testhighlevel

Expand Down
1 change: 0 additions & 1 deletion internal/testhighlevel/rtsp_server_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build enable_highlevel_tests
// +build enable_highlevel_tests

package testhighlevel

Expand Down
1 change: 0 additions & 1 deletion internal/testhighlevel/tests_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build enable_highlevel_tests
// +build enable_highlevel_tests

package testhighlevel

Expand Down
Loading