From 656166e25cc602161d5fe5d7ba52f8b23af1399d Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 11 Oct 2003 09:05:47 +0000 Subject: [PATCH] Expect the unicode data directory to be linked to by "unidata". --- charset/misc/add-charnames | 2 +- charset/misc/gen-basic | 2 +- charset/misc/gen-charconv | 2 +- charset/misc/gen-unacc | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charset/misc/add-charnames b/charset/misc/add-charnames index faf4af53..5057d5f2 100755 --- a/charset/misc/add-charnames +++ b/charset/misc/add-charnames @@ -4,7 +4,7 @@ # (c) 1997 Martin Mares # -open (UNI, "unicode/UnicodeData.txt") || die "No Unicode Data File"; +open (UNI, "unidata/UnicodeData.txt") || die "No Unicode Data File"; while () { ($num,$name) = split /;/; $name{$num} = $name; diff --git a/charset/misc/gen-basic b/charset/misc/gen-basic index 3c90637c..6c3b8fd8 100755 --- a/charset/misc/gen-basic +++ b/charset/misc/gen-basic @@ -4,7 +4,7 @@ # (c) 1997--2001 Martin Mares # -open(I, "unicode/UnicodeData.txt") || die "Unable to open UniCode data file"; +open(I, "unidata/UnicodeData.txt") || die "Unable to open UniCode data file"; open(C, ">misc/u-cat") || die "cat file open"; open(U, ">misc/u-upper") || die "upper file open"; open(L, ">misc/u-lower") || die "lower file open"; diff --git a/charset/misc/gen-charconv b/charset/misc/gen-charconv index 28660d1d..bc28a8fd 100755 --- a/charset/misc/gen-charconv +++ b/charset/misc/gen-charconv @@ -93,7 +93,7 @@ for($i=0; $i<256; $i++) { print "};\n\n"; print STDERR "UniData file...\n"; -open (U, "unicode/UnicodeData.txt") || die "No UnicodeData file"; +open (U, "unidata/UnicodeData.txt") || die "No UnicodeData file"; while () { chomp; ($num,$name,$_,$_,$_,$exp) = split /;/; diff --git a/charset/misc/gen-unacc b/charset/misc/gen-unacc index 8853b7e5..9513fa28 100755 --- a/charset/misc/gen-unacc +++ b/charset/misc/gen-unacc @@ -4,7 +4,7 @@ # (c) 1997 Martin Mares # -open (UNI, "unicode/UnicodeData.txt") || die "No Unicode Data File"; +open (UNI, "unidata/UnicodeData.txt") || die "No Unicode Data File"; while () { chomp; ($num,$name,$cat,$_,$_,$exp) = split /;/; @@ -13,7 +13,7 @@ while () { } close UNI; -open (UNI, "unicode/UnicodeData.txt") || die "No Unicode Data File"; +open (UNI, "unidata/UnicodeData.txt") || die "No Unicode Data File"; while () { chomp; ($num,$name,$cat,$_,$_,$exp) = split /;/; -- 2.39.5