Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9ee0573

Browse files
committed
Add current directory to Perl include path
Recent Perl versions don't have the current directory in the moduleinclude path anymore, so we need to add it here explicitly to make thesescripts continue to work.
1 parentfde03e8 commit9ee0573

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

‎src/backend/utils/mb/Unicode/Makefile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -73,40 +73,40 @@ GENERICTEXTS = $(ISO8859TEXTS) $(WINTEXTS) \
7373
all:$(MAPS)
7474

7575
$(GENERICMAPS): UCS_to_most.pl$(GENERICTEXTS)
76-
$(PERL)$<
76+
$(PERL)-I$(srcdir)$<
7777

7878
johab_to_utf8.maputf8_to_johab.map: UCS_to_JOHAB.pl JOHAB.TXT
79-
$(PERL)$<
79+
$(PERL)-I$(srcdir)$<
8080

8181
uhc_to_utf8.maputf8_to_uhc.map: UCS_to_UHC.pl windows-949-2000.xml
82-
$(PERL)$<
82+
$(PERL)-I$(srcdir)$<
8383

8484
euc_jp_to_utf8.maputf8_to_euc_jp.map: UCS_to_EUC_JP.pl CP932.TXT JIS0212.TXT
85-
$(PERL)$<
85+
$(PERL)-I$(srcdir)$<
8686

8787
euc_cn_to_utf8.maputf8_to_euc_cn.map: UCS_to_EUC_CN.pl gb-18030-2000.xml
88-
$(PERL)$<
88+
$(PERL)-I$(srcdir)$<
8989

9090
euc_kr_to_utf8.maputf8_to_euc_kr.map: UCS_to_EUC_KR.pl KSX1001.TXT
91-
$(PERL)$<
91+
$(PERL)-I$(srcdir)$<
9292

9393
euc_tw_to_utf8.maputf8_to_euc_tw.map: UCS_to_EUC_TW.pl CNS11643.TXT
94-
$(PERL)$<
94+
$(PERL)-I$(srcdir)$<
9595

9696
sjis_to_utf8.maputf8_to_sjis.map: UCS_to_SJIS.pl CP932.TXT
97-
$(PERL)$<
97+
$(PERL)-I$(srcdir)$<
9898

9999
gb18030_to_utf8.maputf8_to_gb18030.map: UCS_to_GB18030.pl gb-18030-2000.xml
100-
$(PERL)$<
100+
$(PERL)-I$(srcdir)$<
101101

102102
big5_to_utf8.maputf8_to_big5.map: UCS_to_BIG5.pl BIG5.TXT CP950.TXT
103-
$(PERL)$<
103+
$(PERL)-I$(srcdir)$<
104104

105105
euc_jis_2004_to_utf8.maputf8_to_euc_jis_2004.map: UCS_to_EUC_JIS_2004.pl euc-jis-2004-std.txt
106-
$(PERL)$<
106+
$(PERL)-I$(srcdir)$<
107107

108108
shift_jis_2004_to_utf8.maputf8_to_shift_jis_2004.map: UCS_to_SHIFT_JIS_2004.pl sjis-0213-2004-std.txt
109-
$(PERL)$<
109+
$(PERL)-I$(srcdir)$<
110110

111111
distclean: clean
112112
rm -f$(TEXTS)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp