Commit 204b9fc2 by Ian Lance Taylor

configure: Quote some shell variables.

From Dominik Vogt.

From-SVN: r216355
parent 6c4ee063
......@@ -13886,17 +13886,17 @@ GO_LIBCALL_OS_FILE=
GO_LIBCALL_OS_ARCH_FILE=
GO_SYSCALL_OS_FILE=
GO_SYSCALL_OS_ARCH_FILE=
if test -f ${srcdir}/go/syscall/libcall_${GOOS}.go; then
GO_LIBCALL_OS_FILE=go/syscall/libcall_${GOOS}.go
if test -f "${srcdir}/go/syscall/libcall_${GOOS}.go"; then
GO_LIBCALL_OS_FILE="go/syscall/libcall_${GOOS}.go"
fi
if test -f ${srcdir}/go/syscall/libcall_${GOOS}_${GOARCH}.go; then
GO_LIBCALL_OS_ARCH_FILE=go/syscall/libcall_${GOOS}_${GOARCH}.go
if test -f "${srcdir}/go/syscall/libcall_${GOOS}_${GOARCH}.go"; then
GO_LIBCALL_OS_ARCH_FILE="go/syscall/libcall_${GOOS}_${GOARCH}.go"
fi
if test -f ${srcdir}/go/syscall/syscall_${GOOS}.go; then
GO_SYSCALL_OS_FILE=go/syscall/syscall_${GOOS}.go
if test -f "${srcdir}/go/syscall/syscall_${GOOS}.go"; then
GO_SYSCALL_OS_FILE="go/syscall/syscall_${GOOS}.go"
fi
if test -f ${srcdir}/go/syscall/syscall_${GOOS}_${GOARCH}.go; then
GO_SYSCALL_OS_ARCH_FILE=go/syscall/syscall_${GOOS}_${GOARCH}.go
if test -f "${srcdir}/go/syscall/syscall_${GOOS}_${GOARCH}.go"; then
GO_SYSCALL_OS_ARCH_FILE="go/syscall/syscall_${GOOS}_${GOARCH}.go"
fi
......
......@@ -306,17 +306,17 @@ GO_LIBCALL_OS_FILE=
GO_LIBCALL_OS_ARCH_FILE=
GO_SYSCALL_OS_FILE=
GO_SYSCALL_OS_ARCH_FILE=
if test -f ${srcdir}/go/syscall/libcall_${GOOS}.go; then
GO_LIBCALL_OS_FILE=go/syscall/libcall_${GOOS}.go
if test -f "${srcdir}/go/syscall/libcall_${GOOS}.go"; then
GO_LIBCALL_OS_FILE="go/syscall/libcall_${GOOS}.go"
fi
if test -f ${srcdir}/go/syscall/libcall_${GOOS}_${GOARCH}.go; then
GO_LIBCALL_OS_ARCH_FILE=go/syscall/libcall_${GOOS}_${GOARCH}.go
if test -f "${srcdir}/go/syscall/libcall_${GOOS}_${GOARCH}.go"; then
GO_LIBCALL_OS_ARCH_FILE="go/syscall/libcall_${GOOS}_${GOARCH}.go"
fi
if test -f ${srcdir}/go/syscall/syscall_${GOOS}.go; then
GO_SYSCALL_OS_FILE=go/syscall/syscall_${GOOS}.go
if test -f "${srcdir}/go/syscall/syscall_${GOOS}.go"; then
GO_SYSCALL_OS_FILE="go/syscall/syscall_${GOOS}.go"
fi
if test -f ${srcdir}/go/syscall/syscall_${GOOS}_${GOARCH}.go; then
GO_SYSCALL_OS_ARCH_FILE=go/syscall/syscall_${GOOS}_${GOARCH}.go
if test -f "${srcdir}/go/syscall/syscall_${GOOS}_${GOARCH}.go"; then
GO_SYSCALL_OS_ARCH_FILE="go/syscall/syscall_${GOOS}_${GOARCH}.go"
fi
AC_SUBST(GO_LIBCALL_OS_FILE)
AC_SUBST(GO_LIBCALL_OS_ARCH_FILE)
......
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