Skip to content

Commit

Permalink
Add zos build flags
Browse files Browse the repository at this point in the history
Added flags to const_bsds.go and const_win_unix.go to allow for building on IBM z/OS
  • Loading branch information
msradam authored and bep committed Mar 6, 2023
1 parent 1882278 commit 45ef346
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions const_bsds.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build aix || darwin || openbsd || freebsd || netbsd || dragonfly
// +build aix darwin openbsd freebsd netbsd dragonfly
//go:build aix || darwin || openbsd || freebsd || netbsd || dragonfly || zos
// +build aix darwin openbsd freebsd netbsd dragonfly zos

package afero

Expand Down
4 changes: 2 additions & 2 deletions const_win_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build !darwin && !openbsd && !freebsd && !dragonfly && !netbsd && !aix
// +build !darwin,!openbsd,!freebsd,!dragonfly,!netbsd,!aix
//go:build !darwin && !openbsd && !freebsd && !dragonfly && !netbsd && !aix && !zos
// +build !darwin,!openbsd,!freebsd,!dragonfly,!netbsd,!aix,!zos

package afero

Expand Down

0 comments on commit 45ef346

Please sign in to comment.