switch to DIRS-based build, not build-in-each-directory way.
git-svn-id: svn://10.0.0.236/trunk@120920 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
d50d6e28b4
commit
89decbbbc4
@ -343,22 +343,15 @@ sub FindMakefiles {
|
||||
# Build xpidl
|
||||
print "gmake -C mozilla/xpcom/typelib\n";
|
||||
system("gmake -C mozilla/xpcom/typelib");
|
||||
|
||||
|
||||
# Now try the modules.
|
||||
foreach (@dirs) {
|
||||
print "dir = $_ (export)\n";
|
||||
#run_shell_command("gmake -C $_ export");
|
||||
print "gmake -C $_ export\n";
|
||||
system("gmake -C $_ export");
|
||||
}
|
||||
|
||||
print "basedir = $basedir\n";
|
||||
foreach (@dirs) {
|
||||
print "dir = $_ (libs)\n";
|
||||
#run_shell_command("gmake -C $dir");
|
||||
print "gmake -C $_ export\n";
|
||||
system("gmake -C $_ libs");
|
||||
}
|
||||
chdir("$basedir/mozilla");
|
||||
|
||||
# Export-phase first. Export IDL stuff first to avoid IDL order problems.
|
||||
# system("gmake export-idl"); # testing, not part of make system yet.
|
||||
system("gmake export"); # run_shell_command("gmake export");
|
||||
|
||||
# Libs-phase next.
|
||||
system("gmake libs"); # run_shell_command("gmake libs");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user