diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-07-01 16:36:26 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-07-01 16:36:26 +0800 |
commit | 6e9781c32b4ee79902b5345b8563f03aca34520a (patch) | |
tree | be798f60ed524ec8bf202fea5c466ce5023dc541 | |
parent | 9de65a11bbf974e62520c18c1d193a5655d02ca3 (diff) | |
download | gtk+-6e9781c32b4ee79902b5345b8563f03aca34520a.tar.gz |
Fix "Installation" for Visual Studio 2010+
We need to enclose paths containing $(BinDir) with double quotes as it
points to something like c:\foo\gtk+-x.yy.zz, which the copy command on
Windows does not like "+" in paths unless enclosed in quotes.
-rw-r--r-- | build/win32/vs10/gtk-install.props | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build/win32/vs10/gtk-install.props b/build/win32/vs10/gtk-install.props index 766f4fc710..562302209b 100644 --- a/build/win32/vs10/gtk-install.props +++ b/build/win32/vs10/gtk-install.props @@ -10,14 +10,14 @@ <GtkDoInstall> mkdir $(CopyDir)\bin -copy $(BinDir)\*-vs$(VSVer).dll $(CopyDir)\bin +copy "$(BinDir)\*-vs$(VSVer).dll" $(CopyDir)\bin -copy $(BinDir)\*.exe $(CopyDir)\bin +copy "$(BinDir)\*.exe" $(CopyDir)\bin mkdir $(CopyDir)\lib -copy $(BinDir)\*-$(ApiVersion).lib $(CopyDir)\lib +copy "$(BinDir)\*-$(ApiVersion).lib" $(CopyDir)\lib mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk @@ -536,11 +536,11 @@ copy ..\..\..\modules\other\gail\libgail-util\gailtextutil.h $(CopyDir)\include\ copy ..\..\..\modules\other\gail\libgail-util\gail-util.h $(CopyDir)\include\gail-1.0\libgail-util -copy $(BinDir)\*-$(ApiVersion).lib $(CopyDir)\lib +copy "$(BinDir)\*-$(ApiVersion).lib" $(CopyDir)\lib mkdir $(CopyDir)\lib\gtk-$(ApiVersion)\$(GtkHost)\engines -copy $(BinDir)\libwimp.dll $(CopyDir)\lib\gtk-$(ApiVersion)\$(GtkHost)\engines +copy "$(BinDir)\libwimp.dll" $(CopyDir)\lib\gtk-$(ApiVersion)\$(GtkHost)\engines mkdir $(CopyDir)\share\gtk-$(ApiVersion)\demo |