Commit 616394b1 authored by Russ Cox's avatar Russ Cox

deps.bash: handle space between .go and \ in GOFILES=

R=r
CC=golang-dev
https://golang.org/cl/181157
parent 6bfe5f55
......@@ -18,7 +18,7 @@ dirpat=$(echo $dirs | sed 's/ /|/g; s/.*/^(&)$/')
for dir in $dirs; do (
cd $dir || exit 1
sources=$(sed -n 's/\.go\\/.go/p' Makefile)
sources=$(sed -n 's/\.go[ \t]*\\/.go/p' Makefile)
sources=$(ls $sources 2> /dev/null) # remove .s, .c, etc.
deps=$(
......
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