From 2842eeda5aa7c143b3ff54d48f8673bbdcb35c75 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 12 Feb 2007 09:58:50 +0000 Subject: [PATCH] Don't throw up if a package doesn't install anything --- source/builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.43.0