From: Tilman Sauerbeck Date: Sun, 27 Aug 2006 10:12:21 +0000 (+0200) Subject: tell the user when we didn't install a file because an INSTALL rule kicked in X-Git-Url: http://gitweb/?a=commitdiff_plain;h=22131995295a9db9be7b461cbcefe65d8ffe9df1;hp=3e5b7ed9bbe9a9659486a9d4c51f3466d1e877ec;p=pkgutils-cross.git tell the user when we didn't install a file because an INSTALL rule kicked in --- diff --git a/pkgutil.cc b/pkgutil.cc index beaa74b..bdc1563 100644 --- a/pkgutil.cc +++ b/pkgutil.cc @@ -384,6 +384,8 @@ void pkgutil::pkg_install(const string& filename, const set& keep_list, // Check if file is filtered out via INSTALL if (non_install_list.find(archive_filename) != non_install_list.end()) { + cout << utilname << ": ignoring " << archive_filename << endl; + if (TH_ISREG(t)) tar_skip_regfile(t);