From: Mikko Rasa Date: Mon, 12 Feb 2007 09:58:50 +0000 (+0000) Subject: Don't throw up if a package doesn't install anything X-Git-Tag: 0.9~40 X-Git-Url: http://git.tdb.fi/?p=builder.git;a=commitdiff_plain;h=2842eeda5aa7c143b3ff54d48f8673bbdcb35c75 Don't throw up if a package doesn't install anything --- diff --git a/source/builder.cpp b/source/builder.cpp index 7825a20..1afc741 100644 --- a/source/builder.cpp +++ b/source/builder.cpp @@ -429,7 +429,7 @@ int Builder::create_targets() continue; Path::Path inst_base; - if(i->second->get_buildable()) + if(i->second->get_buildable() && i->second->get_install_flags()) inst_base=i->second->get_prefix(); const ComponentList &components=i->second->get_components();