.BuildAll

git-svn-id: svn://ultimatepp.org/upp/trunk@5468 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-10-24 17:55:12 +00:00
parent 7e71b7d298
commit 4033348bff

View file

@ -44,7 +44,6 @@ void Build(const char *nest, const char *bm, bool release)
!IsIgnored(name) && !IsIgnored(name + ":" + mn) && !IsIgnored(String(nest) + ':' + name + ':' + mn)) {
String txt;
txt << nest << ' ' << name << ' ' << bm << ' ' << mn;
Cout() << " Building " << txt;
String c;
c << umk << nest << ' ' << name << ' ' << bm << " -" << flags;
if(first)
@ -53,6 +52,7 @@ void Build(const char *nest, const char *bm, bool release)
c << 's';
#endif
c << ' ' << outdir;
Cout() << c;
String out;
if(Sys(c, out)) {
Cout() << " *** FAILED *** !\n";