Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 90d9fc0

Browse files
committed
Install stopword files
1 parent 3b1e04c commit 90d9fc0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tools/msvc/Install.pm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Install;
33
#
44
# Package that provides 'make install' functionality for msvc builds
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.17 2007/08/27 10:29:49 mha Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.18 2007/08/27 10:51:15 mha Exp $
77
#
88
use strict;
99
use warnings;
@@ -39,7 +39,7 @@ sub Install
3939
print "Installing for $conf in $target\n";
4040

4141
EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc',
42-
'doc/contrib', 'symbols');
42+
'doc/contrib', 'symbols', 'share/tsearch_data');
4343

4444
CopySolutionOutput($conf, $target);
4545
copy($target . '/lib/libpq.dll', $target . '/bin/libpq.dll');
@@ -65,6 +65,7 @@ sub Install
6565
GenerateConversionScript($target);
6666
GenerateTimezoneFiles($target,$conf);
6767
GenerateTsearchFiles($target);
68+
CopySetOfFiles('Stopword files', "src\\backend\\snowball\\stopwords\\*.stop", $target . '/share/tsearch_data/');
6869
CopyContribFiles($config,$target);
6970
CopyIncludeFiles($target);
7071

0 commit comments

Comments
 (0)