Commit 06941da3 authored by Peter Eisentraut's avatar Peter Eisentraut

Add possibility to generate only some files, by passing command-line

arguments.
parent b79e3745
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# Copyright (c) 2001-2009, PostgreSQL Global Development Group # Copyright (c) 2001-2009, PostgreSQL Global Development Group
# #
# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_most.pl,v 1.5 2009/01/01 17:23:51 momjian Exp $ # $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_most.pl,v 1.6 2009/02/10 16:36:55 petere Exp $
# #
# Generate UTF-8 <--> character code conversion tables from # Generate UTF-8 <--> character code conversion tables from
# map files provided by Unicode organization. # map files provided by Unicode organization.
...@@ -50,6 +50,7 @@ require "ucs2utf.pl"; ...@@ -50,6 +50,7 @@ require "ucs2utf.pl";
); );
@charsets = keys(filename); @charsets = keys(filename);
@charsets = @ARGV if scalar(@ARGV);
foreach $charset (@charsets) { foreach $charset (@charsets) {
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment