]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Traditional /bin/sh is unhappy about {a,b} globbing.
authorLinus Nordberg <linus@torproject.org>
Mon, 15 Jul 2013 14:06:39 +0000 (16:06 +0200)
committerLinus Nordberg <linus@torproject.org>
Mon, 15 Jul 2013 14:06:39 +0000 (16:06 +0200)
contrib/coverage

index 52fe96d75611b86af063cb085578c6f67567492c..f51649a78ecc6c8fefb2e3290381de04e3cef6af 100755 (executable)
@@ -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$//;'`