@@ -3,7 +3,7 @@ package Install;
3
3
#
4
4
# Package that provides 'make install' functionality for msvc builds
5
5
#
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 $
7
7
#
8
8
use strict;
9
9
use warnings;
@@ -39,7 +39,7 @@ sub Install
39
39
print " Installing for$conf in$target \n " ;
40
40
41
41
EnsureDirectories($target ,' bin' ,' lib' ,' share' ,' share/timezonesets' ,' share/contrib' ,' doc' ,
42
- ' doc/contrib' ,' symbols' );
42
+ ' doc/contrib' ,' symbols' , ' share/tsearch_data ' );
43
43
44
44
CopySolutionOutput($conf ,$target );
45
45
copy($target .' /lib/libpq.dll' ,$target .' /bin/libpq.dll' );
@@ -65,6 +65,7 @@ sub Install
65
65
GenerateConversionScript($target );
66
66
GenerateTimezoneFiles($target ,$conf );
67
67
GenerateTsearchFiles($target );
68
+ CopySetOfFiles(' Stopword files' ," src\\ backend\\ snowball\\ stopwords\\ *.stop" ,$target .' /share/tsearch_data/' );
68
69
CopyContribFiles($config ,$target );
69
70
CopyIncludeFiles($target );
70
71