Skip to content

Commit a0418c7

Browse files
author
eb
committed
minor tweak
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3702 221aa14e-8319-0410-a670-987f0aec2ac5
1 parent 7627aff commit a0418c7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dtools/bin/check-tarball-h-files

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ fi
1010
path=${tarball%%.tar.gz}
1111

1212
tar tzf $tarball \
13-
| grep -E '\.(h|py|v)$' \
13+
| grep -E '\.(h|py|v|vh)$' \
1414
| sed -e "s/$path/./" \
1515
| sort >/tmp/tarball-h-files
1616

17-
find . \( -name '*.h' -o -name '*.py' \) -print | grep -v ./$path | sort >/tmp/build-h-files
17+
find . \( -name '*.h' -o -name '*.py' -o -name '*.v' -o -name '*.vh' \) -print \
18+
| grep -v ./$path | sort >/tmp/build-h-files
1819

1920
comm -23 /tmp/build-h-files /tmp/tarball-h-files
2021

0 commit comments

Comments
 (0)