Commit d8523863 authored by Russ Cox's avatar Russ Cox

deps.bash tweak - no need to sort -u the $O files.

R=dsymonds
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=29048
CL=29053
parent 20ea881c
......@@ -13,7 +13,7 @@ dirpat=$(echo $dirs | sed 's/ /|/g; s/.*/^(&)$/')
for dir in $dirs; do (
cd $dir || exit 1
sources=$(sed -n 's/\.\$O\\/.go/p' Makefile | sort | uniq)
sources=$(sed -n 's/\.\$O\\/.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