Browse Source

Traditional /bin/sh is unhappy about {a,b} globbing.

Linus Nordberg 10 years ago
parent
commit
3c74119be1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/coverage

+ 1 - 1
contrib/coverage

@@ -5,7 +5,7 @@
 # coverage -- run gcov on the appropriate set of object files to extract
 # coverage information.
 
-for fn in src/{or,common}/*.c; do
+for fn in src/or/*.c src/common/*.c; do
     BN=`basename $fn`
     DN=`dirname $fn`
     F=`echo $BN | sed -e 's/\.c$//;'`