CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
tell the user when we didn't install a file because an INSTALL rule kicked in
authorTilman Sauerbeck <tilman@code-monkey.de>
Sun, 27 Aug 2006 10:12:21 +0000 (12:12 +0200)
committerTilman Sauerbeck <tilman@code-monkey.de>
Sun, 27 Aug 2006 10:12:21 +0000 (12:12 +0200)
pkgutil.cc

index beaa74b35919f49f5421cb82dd3185059dc9ddf1..bdc1563541bdabd2c65da2bce8b6a9ffca2fff5d 100644 (file)
@@ -384,6 +384,8 @@ void pkgutil::pkg_install(const string& filename, const set<string>& 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);