1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add checker of hid.lst and a minor fix.

cf. http://www.openoffice.org/issues/show_bug.cgi?id=103796
This commit is contained in:
Maho Nakata 2009-08-14 10:46:53 +00:00
parent 664d16aa1f
commit 484d3291cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=239514

View File

@ -31,7 +31,7 @@ $ooo_milestone=~ s/m//;
####
### Customize according your needs
$path_to_testttol = "/usr/local/openoffice.org-vcltesttool/program";
$path_to_ooo = "/usr/local/openoffice.org-$ooo_tag/openoffice.org3/program"
$path_to_ooo = "/usr/local/openoffice.org-$ooo_tag/openoffice.org3/program";
#for other environments
#$path_to_testttol = "/opt/openoffice-vcltesttool/testtool.bin";
#$path_to_ooo = "/usr/lib/openoffice/program";
@ -123,3 +123,10 @@ print TESTTOOLRC "[LRU]\n";
print TESTTOOLRC "MaxLRU=4\n";
close(TESTTOOLRC);
###########
#checking hid.lst (generated and QUASTe)
system ("cat $path_to_ooo/../../hid.lst | sort > hid.lst.genrated\n");
system ("sed 's/\r//' hid.lst | sort > hid.lst.quaste\n");
system ("diff -u hid.lst.genrated hid.lst.quaste > hid.lst.diff\n");
system ("cat hid.lst.diff\n");