mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix genDocSourcesList script lack of explicit sorting
To make the doc.coverage test more portable/happy
This commit is contained in:
parent
f64ae5b7d6
commit
ef60a84b19
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ sourcedir=${thisdir}/../..
|
||||||
|
|
||||||
echo "$statictext" > $outfile
|
echo "$statictext" > $outfile
|
||||||
|
|
||||||
bifs=`( cd ${sourcedir}/build/src && find . -name \*\.bro )`
|
bifs=`( cd ${sourcedir}/build/src && find . -name \*\.bro | sort )`
|
||||||
|
|
||||||
for file in $bifs
|
for file in $bifs
|
||||||
do
|
do
|
||||||
|
@ -51,7 +51,7 @@ do
|
||||||
echo "rest_target(\${CMAKE_BINARY_DIR}/src $f)" >> $outfile
|
echo "rest_target(\${CMAKE_BINARY_DIR}/src $f)" >> $outfile
|
||||||
done
|
done
|
||||||
|
|
||||||
policyfiles=`( cd ${sourcedir}/policy && find . -name \*\.bro )`
|
policyfiles=`( cd ${sourcedir}/policy && find . -name \*\.bro | sort )`
|
||||||
|
|
||||||
for file in $policyfiles
|
for file in $policyfiles
|
||||||
do
|
do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue