Merge remote-tracking branch 'catalyst-oniongit/bug23741'

This commit is contained in:
Nick Mathewson 2017-10-03 08:05:46 -04:00
commit d00a26f860
2 changed files with 5 additions and 1 deletions

4
changes/bug23741 Normal file
View file

@ -0,0 +1,4 @@
o Minor bugfixes (testing):
- Prevent scripts/test/coverage from attempting to move gcov
output to the root directory. Fixes bug 23741; bugfix on
0.2.5.1-alpha.

View file

@ -29,7 +29,7 @@ for fn in src/or/*.c src/common/*.c; do
gcov -o $on $fn
if [ -e $GC ]
then
if [ -n $dst ]
if [ -d "$dst" ]
then
mv $GC $dst/$GC
fi