]> git.decadent.org.uk Git - dak.git/blobdiff - jenna
sync
[dak.git] / jenna
diff --git a/jenna b/jenna
index b186ff7898a31e880da8136b0ef4a5f43516ba63..d2c8e17cd7bafebc8b0f33c7014fc85655dc3b35 100755 (executable)
--- a/jenna
+++ b/jenna
@@ -2,7 +2,7 @@
 
 # Generate file list which is then fed to apt-ftparchive to generate Packages and Sources files
 # Copyright (C) 2000  James Troup <james@nocrew.org>
-# $Id: jenna,v 1.2 2000-12-05 04:27:48 troup Exp $
+# $Id: jenna,v 1.3 2001-01-16 21:52:37 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -104,12 +104,6 @@ def generate_bin_list(suite, component, architecture, output, type, dislocated_f
         if dislocated_files.has_key(file_id):
             filename = dislocated_files[file_id];
         
-        # Hack to handle screwed up sid distro [FIXME: this may have issues, remove ASAP]
-        if not os.path.exists(filename):
-            sid_filename = string.replace(filename, "/woody/", "/potato/");
-            if os.path.exists(sid_filename):
-                filename = sid_filename;
-                
         if os.path.exists(filename):
             if packages.has_key(package):
                 if apt_pkg.VersionCompare(packages[package]["version"], version) == -1: