diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2006-10-03 23:45:13 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2006-10-03 23:45:13 +0000 |
commit | a0418c71fcd7cf7233e7dbbd1a4a48efd2757c52 (patch) | |
tree | 07e642455adf490c231bc506bc1ecc1565621054 /dtools | |
parent | 7627aff24f358831bdaa0d27a67443554a7a9a75 (diff) |
minor tweak
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3702 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'dtools')
-rwxr-xr-x | dtools/bin/check-tarball-h-files | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dtools/bin/check-tarball-h-files b/dtools/bin/check-tarball-h-files index f94832c2d7..1f808cb040 100755 --- a/dtools/bin/check-tarball-h-files +++ b/dtools/bin/check-tarball-h-files @@ -10,11 +10,12 @@ fi path=${tarball%%.tar.gz} tar tzf $tarball \ - | grep -E '\.(h|py|v)$' \ + | grep -E '\.(h|py|v|vh)$' \ | sed -e "s/$path/./" \ | sort >/tmp/tarball-h-files -find . \( -name '*.h' -o -name '*.py' \) -print | grep -v ./$path | sort >/tmp/build-h-files +find . \( -name '*.h' -o -name '*.py' -o -name '*.v' -o -name '*.vh' \) -print \ + | grep -v ./$path | sort >/tmp/build-h-files comm -23 /tmp/build-h-files /tmp/tarball-h-files |