Skip to content

Commit

Permalink
Add !cmd_go_bootstrap tag (#97)
Browse files Browse the repository at this point in the history
This is necessary for the Red Hat Go fork as our support for
building with openssl is opt-out instead of opt-in, meaning it
isn't gated behind a build tag. Without this change `./make.bash`
will fail.
  • Loading branch information
derekparker authored Aug 7, 2023
1 parent d213871 commit 66d32c6
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion aes.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion ec.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion ecdh.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion ecdsa.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion evp.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion hkdf.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion hmac.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion init.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion openssl.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

// Package openssl provides access to OpenSSL cryptographic functions.
package openssl
Expand Down
2 changes: 1 addition & 1 deletion rand.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion rsa.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down
2 changes: 1 addition & 1 deletion sha.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !cmd_go_bootstrap

package openssl

Expand Down

0 comments on commit 66d32c6

Please sign in to comment.