From abc71447b51817e45069dacb6b1c1aee0fc606e4 Mon Sep 17 00:00:00 2001 From: imiyazaki Date: Tue, 28 Oct 2003 13:43:59 +0000 Subject: [PATCH] refine code. --- add_adobecid.pl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/add_adobecid.pl b/add_adobecid.pl index 1d5ac81..38f9546 100644 --- a/add_adobecid.pl +++ b/add_adobecid.pl @@ -33,9 +33,9 @@ if($^O=~/darwin/){ my $usage=< - UniJIS-UCS2-H, etc. available in Adobe Reader Directory. + UniJIS-UTF16-H etc. available in Adobe Reader Directory. is directory to store BDB data, - typically /usr/local/lib/chise/db. + typically /usr/local/lib/chise/chise-db. EOF #my $db_home="/usr/local/lib/chise/char-db"; @@ -50,6 +50,9 @@ if(@ARGV==2){ $db_home=$db_home."/character/feature"; }elsif(-d "$db_home/system-char-id"){ $db_home=$db_home."/system-char-id"; + }else{ + print STDERR $usage; + exit 1; } ($ciddb_filename=$cmapfile)=~s!^.*/(.*)$!"vnd-adobe-cid-".lc($1)!e; @@ -59,7 +62,7 @@ if(@ARGV==2){ unless(defined($cmapfile) and -f $cmapfile and $encoding=~/^=ucs\@(cns|gb|jis|ks)$/ and -d $db_home){ - print $usage; + print STDERR $usage; exit 1; } -- 1.7.10.4