Put quotes into xcopy command and note that it might need privileges.

The pathnames have spaces, so they must be quoted.

At least on my VM, I had to run it as Administrator.

Change-Id: I7600edbdbe3205c7f766cc651bd6b86340efa0ff
Reviewed-on: https://code.wireshark.org/review/9429
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2015-06-30 12:58:44 -07:00
parent 74338f5e5c
commit 98a7b1eeb8
1 changed files with 4 additions and 2 deletions

View File

@ -102,11 +102,13 @@ For VS2013 (and later) Microsoft has left out a required file from the
include files to build with nmake. To fix this copy Win32.Mak from the Win 7 SDK include files to build with nmake. To fix this copy Win32.Mak from the Win 7 SDK
into an appropriate path for use with VS2013, e.g. into an appropriate path for use with VS2013, e.g.
---- ----
C:\> xcopy C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Include\Win32.Mak ^ C:\> xcopy "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Include\Win32.Mak" ^
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include"
---- ----
==== ====
You may have to do this as Administrator.
Compiling with gcc or Clang is not recommended and will Compiling with gcc or Clang is not recommended and will
certainly not work (at least not without a lot of advanced certainly not work (at least not without a lot of advanced
tweaking). For further details on this topic, see tweaking). For further details on this topic, see