From 1d0e94b1e13d5e8a323a63cd1cc1ef95290c9c36 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20Chigot?= Date: Fri, 28 Sep 2018 15:58:19 +0200 Subject: [PATCH] path/filepath: add AIX operating system This commit adds AIX operating system to path/filepath package for ppc64 architecture. Updates: #25893 Change-Id: Iea551236d334705a58a446c8992b20adcfe4159b Reviewed-on: https://go-review.googlesource.com/c/138726 Reviewed-by: Brad Fitzpatrick --- src/path/filepath/path_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/filepath/path_unix.go b/src/path/filepath/path_unix.go index 349dea7b53..c10b3288a1 100644 --- a/src/path/filepath/path_unix.go +++ b/src/path/filepath/path_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris +// +build aix darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris package filepath -- 2.48.1