mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Install stopword files
This commit is contained in:
@ -3,7 +3,7 @@ package Install;
|
|||||||
#
|
#
|
||||||
# Package that provides 'make install' functionality for msvc builds
|
# Package that provides 'make install' functionality for msvc builds
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.17 2007/08/27 10:29:49 mha Exp $
|
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.18 2007/08/27 10:51:15 mha Exp $
|
||||||
#
|
#
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
@ -39,7 +39,7 @@ sub Install
|
|||||||
print "Installing for $conf in $target\n";
|
print "Installing for $conf in $target\n";
|
||||||
|
|
||||||
EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc',
|
EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc',
|
||||||
'doc/contrib', 'symbols');
|
'doc/contrib', 'symbols', 'share/tsearch_data');
|
||||||
|
|
||||||
CopySolutionOutput($conf, $target);
|
CopySolutionOutput($conf, $target);
|
||||||
copy($target . '/lib/libpq.dll', $target . '/bin/libpq.dll');
|
copy($target . '/lib/libpq.dll', $target . '/bin/libpq.dll');
|
||||||
@ -65,6 +65,7 @@ sub Install
|
|||||||
GenerateConversionScript($target);
|
GenerateConversionScript($target);
|
||||||
GenerateTimezoneFiles($target,$conf);
|
GenerateTimezoneFiles($target,$conf);
|
||||||
GenerateTsearchFiles($target);
|
GenerateTsearchFiles($target);
|
||||||
|
CopySetOfFiles('Stopword files', "src\\backend\\snowball\\stopwords\\*.stop", $target . '/share/tsearch_data/');
|
||||||
CopyContribFiles($config,$target);
|
CopyContribFiles($config,$target);
|
||||||
CopyIncludeFiles($target);
|
CopyIncludeFiles($target);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user