From dfb774c4b46956b642c72a34dfd59637ee741580 Mon Sep 17 00:00:00 2001 From: calvin Date: Thu, 23 Nov 2000 00:14:21 +0000 Subject: [PATCH] man page git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@204 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- debian/changelog | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index df2a29ec..d231b673 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,9 +2,9 @@ linkchecker (1.2.9) unstable; urgency=low * changed specification and better documentation of intern/extern checking; see the FAQ for detailed information - * added a man page - * setup.py: fix for distutils debugging function dump_dirs - * setup.py: fix to handle man pages correctly with bdist_rpm target + * linkchecker.1: added a man page + * setup.py: overloaded distutils debugging function dump_dirs + * setup.py: handle man pages correctly with bdist_rpm target -- Bastian Kleineidam Wed, 22 Nov 2000 12:42:02 +0100 diff --git a/setup.py b/setup.py index 2bbd98d2..bafee5ec 100755 --- a/setup.py +++ b/setup.py @@ -149,7 +149,7 @@ class MyConfig(config): if self.library_dirs is None: self.library_dirs = [] elif type(self.library_dirs) is StringType: - self.library_dirs = [self.library_dirs] + self.library_dirs = string.split(self.library_dirs, os.pathsep) def run (self):