From 57e9de10935672045ccf39a6c8c6407ad1f319fb Mon Sep 17 00:00:00 2001 From: "leaf%mozilla.org" Date: Mon, 19 Apr 2004 19:02:38 +0000 Subject: [PATCH] correct invocation of make-makefile --- tools/tinderbox/post-mozilla-rel.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tinderbox/post-mozilla-rel.pl b/tools/tinderbox/post-mozilla-rel.pl index df57b4b55399..04fad4b1b3eb 100755 --- a/tools/tinderbox/post-mozilla-rel.pl +++ b/tools/tinderbox/post-mozilla-rel.pl @@ -67,7 +67,7 @@ sub makefullsoft { $fullsofttag = " -r $Settings::BuildTag" unless not defined($Settings::BuildTag) or $Settings::BuildTag eq ''; TinderUtils::run_shell_command "cd $builddir; cvs -d$moforoot co $fullsofttag -d fullsoft talkback/fullsoft"; - TinderUtils::run_shell_command "$builddir/build/autoconf/make-makefile $builddir/fullsoft"; + TinderUtils::run_shell_command "cd $builddir/fullsoft; $builddir/build/autoconf/make-makefile"; TinderUtils::run_shell_command "make -C $builddir/fullsoft"; TinderUtils::run_shell_command "make -C $builddir/fullsoft fullcircle-push"; }