@@ -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#
88use strict;
99use warnings;
@@ -39,7 +39,7 @@ sub Install
3939print " 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