329801 Completely address review comment, using && instead of ; in shell commands. r=preed

This commit is contained in:
mark%moxienet.com 2006-03-13 21:47:12 +00:00
Родитель 37054f078a
Коммит 84803a0ee0
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -191,7 +191,7 @@ sub makefullsoft {
unless not defined($Settings::BuildTag) or $Settings::BuildTag eq '';
TinderUtils::run_shell_command "cd $srcdir && cvs -d$moforoot co $fullsofttag -d fullsoft talkback/fullsoft";
if ($Settings::ObjDir ne '') {
TinderUtils::run_shell_command "mkdir $builddir/fullsoft && cd $builddir/fullsoft; $srcdir/build/autoconf/make-makefile -d ..";
TinderUtils::run_shell_command "mkdir $builddir/fullsoft && cd $builddir/fullsoft && $srcdir/build/autoconf/make-makefile -d ..";
}
else {
TinderUtils::run_shell_command "cd $builddir/fullsoft && $builddir/build/autoconf/make-makefile -d ..";