win32: fix destination of COPYING files in build

This commit is contained in:
Matthew Flatt 2013-06-20 07:20:54 -06:00
parent 41e9b06bcc
commit 2ff05e2dda

View File

@ -49,9 +49,12 @@ if errorlevel 1 exit /B 1
..\..\racket -l racket/kernel/init -e "(if (directory-exists? \"../../doc\") (void) (make-directory \"../../doc\"))"
if errorlevel 1 exit /B 1
copy COPYING-libscheme.txt ..\..\etc\
copy COPYING_LESSER.txt ..\..\etc\
copy COPYING.txt ..\..\etc\
copy ..\COPYING-libscheme.txt ..\..\lib\
if errorlevel 1 exit /B 1
copy ..\COPYING_LESSER.txt ..\..\lib\
if errorlevel 1 exit /B 1
copy ..\COPYING.txt ..\..\lib\
if errorlevel 1 exit /B 1
..\..\racket -N "raco setup" %SELF_RACKET_FLAGS% -l- setup %PLT_SETUP_OPTIONS%
if errorlevel 1 exit /B 1