Change devenv.com command line.

Change /build to -build to avoid problems when builds are run within
msys bash shells.

Change-Id: Ie68d72f702adad00d99be8a01c7a388c3af7657d
This commit is contained in:
Tom Finegan 2010-07-22 17:51:17 -04:00
Родитель 72d4ba92f0
Коммит b791dca979
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -193,11 +193,11 @@ ${TAB}rm -rf "$platform"/"$config"
ifneq (\$(found_devenv),) ifneq (\$(found_devenv),)
ifeq (\$(CONFIG_VS_VERSION),7) ifeq (\$(CONFIG_VS_VERSION),7)
$nows_sln_config: $outfile $nows_sln_config: $outfile
${TAB}devenv.com $outfile /build "$config" ${TAB}devenv.com $outfile -build "$config"
else else
$nows_sln_config: $outfile $nows_sln_config: $outfile
${TAB}devenv.com $outfile /build "$sln_config" ${TAB}devenv.com $outfile -build "$sln_config"
endif endif
else else