Commit 15049fa5 by Ian Lance Taylor

libgo/Makefile.am: Fix typo naming socket_bsd.go.

From-SVN: r169037
parent 7edb6247
...@@ -1095,7 +1095,7 @@ else ...@@ -1095,7 +1095,7 @@ else
if LIBGO_IS_SOLARIS if LIBGO_IS_SOLARIS
syscall_socket_os_file = syscalls/socket_solaris.go syscall_socket_os_file = syscalls/socket_solaris.go
else else
syscall_socket_os_file = syscalls_socket_bsd.go syscall_socket_os_file = syscalls/socket_bsd.go
endif endif
endif endif
......
...@@ -1427,7 +1427,7 @@ go_testing_script_files = \ ...@@ -1427,7 +1427,7 @@ go_testing_script_files = \
# Declare libc_strerror_r which is the Go name for strerror_r. # Declare libc_strerror_r which is the Go name for strerror_r.
# RTEMS uses newlib in which strerror_r returns char *. # RTEMS uses newlib in which strerror_r returns char *.
@LIBGO_IS_RTEMS_TRUE@syscall_errstr_decl_file = syscalls/errstr_decl_rtems.go @LIBGO_IS_RTEMS_TRUE@syscall_errstr_decl_file = syscalls/errstr_decl_rtems.go
@LIBGO_IS_LINUX_FALSE@@LIBGO_IS_SOLARIS_FALSE@syscall_socket_os_file = syscalls_socket_bsd.go @LIBGO_IS_LINUX_FALSE@@LIBGO_IS_SOLARIS_FALSE@syscall_socket_os_file = syscalls/socket_bsd.go
@LIBGO_IS_LINUX_FALSE@@LIBGO_IS_SOLARIS_TRUE@syscall_socket_os_file = syscalls/socket_solaris.go @LIBGO_IS_LINUX_FALSE@@LIBGO_IS_SOLARIS_TRUE@syscall_socket_os_file = syscalls/socket_solaris.go
# Define socket sizes and types. # Define socket sizes and types.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment