diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-08 01:08:29 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-08 01:08:29 +0000 |
commit | b5656ca95fff3a517f00ee2297d78706e1810957 (patch) | |
tree | 64ded3dc2ea89ef1e27d4a84653a9306f1dcfe05 /libgo/Makefile.in | |
parent | 85e1c970f2786aeff4220c4990d61a7576de80a1 (diff) | |
download | gcc-b5656ca95fff3a517f00ee2297d78706e1810957.tar.gz |
PR go/59430
os/user: Use POSIX functions on Solaris.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206412 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/Makefile.in')
-rw-r--r-- | libgo/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libgo/Makefile.in b/libgo/Makefile.in index ca9df103620..cf93938379b 100644 --- a/libgo/Makefile.in +++ b/libgo/Makefile.in @@ -1670,10 +1670,13 @@ go_os_signal_files = \ go/os/signal/signal.go \ go/os/signal/signal_unix.go +@LIBGO_IS_SOLARIS_FALSE@os_user_decls_file = go/os/user/decls_unix.go +@LIBGO_IS_SOLARIS_TRUE@os_user_decls_file = go/os/user/decls_solaris.go go_os_user_files = \ - go/os/user/user.go \ go/os/user/lookup.go \ - go/os/user/lookup_unix.go + go/os/user/lookup_unix.go \ + go/os/user/user.go \ + $(os_user_decls_file) go_path_filepath_files = \ go/path/filepath/match.go \ |