From 0e8c8cb2460102326a88a843a67225d9c81a12e2 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Fri, 18 Jul 2003 22:53:33 +0000 Subject: [PATCH] Handle long file names in pre-build step (quote them). dlls/gdi/win16drv doesn't exist any more. --- tools/winapi/msvcmaker | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index 37607a5bd4e..227c6fcd016 100755 --- a/tools/winapi/msvcmaker +++ b/tools/winapi/msvcmaker @@ -87,7 +87,7 @@ sub read_spec_file { } } -my @gdi32_dirs = qw(dlls/gdi/enhmfdrv dlls/gdi/mfdrv dlls/gdi/win16drv graphics objects); +my @gdi32_dirs = qw(dlls/gdi/enhmfdrv dlls/gdi/mfdrv graphics objects); my @ntdll_dirs = qw(files if1632 loader/ne loader memory misc msdos ole relay32 scheduler win32); my @user32_dirs = qw(controls dlls/user/dde windows); @@ -921,7 +921,7 @@ sub _generate_dsp { print OUT "InputPath=$source_file\r\n"; print OUT "\r\n"; print OUT "\"\$(OutDir)\\wine\\$h_file\" : \$(SOURCE) \"\$(INTDIR)\" \"\$(OUTDIR)\"\r\n"; - print OUT "\tcopy \$(InputPath) \$(OutDir)\\wine\r\n"; + print OUT "\tcopy \"\$(InputPath)\" \"\$(OutDir)\\wine\"\r\n"; print OUT "\r\n"; print OUT "# End Custom Build\r\n"; }