1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-03 12:06:35 +00:00

Corrected a directory separator in the command to move intl.dll.

This commit is contained in:
jah
2012-02-24 20:28:17 +00:00
parent 49c6b65a5a
commit a701846023

View File

@@ -34,7 +34,7 @@ echo Copying GTK files to dist directory...
xcopy %GTKDir%\bin\*.dll %LibraryDir% /S >> %Output%
rem intl.dll is a special case; has to be in the executable directory instead of
rem the py2exe subdirectory.
move /Y %LibraryDir%/intl.dll %DistDir% >> %Output%
move /Y %LibraryDir%\intl.dll %DistDir% >> %Output%
xcopy %GTKDir%\etc %LibraryDir%\etc /S /I >> %Output%
xcopy %GTKDir%\lib\gtk-2.0 %LibraryDir%\lib\gtk-2.0 /S /I >> %Output%
xcopy %GTKDir%\share\themes\Default %LibraryDir%\share\themes\Default /S /I >> %Output%