X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=denise;fp=denise;h=a6ebe8431ad4d04cfdd2d5612adb2c16a70a19b7;hb=907ba9b64b84b4a9a797d87eb4529cfcb51cb9fb;hp=bde3776fed0d9d59bdc7ccb9208c640b7c4d4d9b;hpb=ce79ad778a9269ce3b935d08f60697b948efd220;p=dak.git diff --git a/denise b/denise index bde3776f..a6ebe843 100755 --- a/denise +++ b/denise @@ -1,8 +1,8 @@ #!/usr/bin/env python # Output override files for apt-ftparchive and indices/ -# Copyright (C) 2000 James Troup -# $Id: denise,v 1.2 2001-01-16 21:52:37 troup Exp $ +# Copyright (C) 2000, 2001 James Troup +# $Id: denise,v 1.3 2001-03-02 02:29:00 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 @@ -107,7 +107,7 @@ def main (): override_type = ".debian-installer"; elif type == "dsc": override_type = ".src"; - filename = "override.%s.%s%s" % (override_suite, string.replace(component, "non-US/", ""), override_type); + filename = "%s/override.%s.%s%s" % (Cnf["Dir::OverrideDir"], override_suite, string.replace(component, "non-US/", ""), override_type); file = utils.open_file(filename, 'w'); sys.stdout = file; list(suite, component, type);