Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
204b9fc2
Commit
204b9fc2
authored
Oct 17, 2014
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Quote some shell variables.
From Dominik Vogt. From-SVN: r216355
parent
6c4ee063
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
libgo/configure
+8
-8
libgo/configure.ac
+8
-8
No files found.
libgo/configure
View file @
204b9fc2
...
...
@@ -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
...
...
libgo/configure.ac
View file @
204b9fc2
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment