diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-08-31 01:51:54 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-08-31 01:51:54 +0000 |
commit | e4f96aeefbd0643234645c7d7441e7ed9f490cc6 (patch) | |
tree | 6e0d7295e292da37a31cf7819b41b8c8f688a801 /tools | |
parent | 6f4ef7f4fd405130e246a68fcca3e0320773179c (diff) | |
download | pango-e4f96aeefbd0643234645c7d7441e7ed9f490cc6.tar.gz |
Add /usr/lib/qt-2.2.0 to the list.
Wed Aug 30 21:42:42 2000 Owen Taylor <otaylor@redhat.com>
* configure.in (QTDIR): Add /usr/lib/qt-2.2.0 to the
list.
* modules/basic/tables-big.i: Updated using fixed
make-table.sh. Added koi8-r and iso8859-1
* modules/basic/tables-small.i: Add note noting
non-maintainence.
* tools/make-table.sh: Fix for mapping tables with
3 columns provided by KUSANO Takayuki.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/make-table.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make-table.sh b/tools/make-table.sh index e4a3963b..5dbefb13 100755 --- a/tools/make-table.sh +++ b/tools/make-table.sh @@ -8,7 +8,7 @@ for i in maps/* ; do README | CVS) ;; *) - cat $i | grep -v '^#' | awk "{ printf \"%s %s:%s\\n\", \$2, \"$name\", \$1 }" >> table.tmp + cat $i | grep -v '^#' | sed -e 's/[:space:]*#.*$//' | awk "{ printf \"%s %s:%s\\n\", \$NF, \"$name\", \$1 }" >> table.tmp ;; esac done |