From 798712445a121ec409da67b10aff3fcc99698aec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?= =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= Date: Fri, 21 Feb 2014 11:14:35 +0000 Subject: Extend the hack towards backslashes as path separators https://bugzilla.gnome.org/show_bug.cgi?id=724877 --- giscanner/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/giscanner/utils.py b/giscanner/utils.py index abd1a266..c0d49d26 100644 --- a/giscanner/utils.py +++ b/giscanner/utils.py @@ -132,7 +132,7 @@ def extract_libtool(la_file): # FIXME: This hackish, but I'm not sure how to do this # in a way which is compatible with both libtool 2.2 # and pre-2.2. Johan 2008-10-21 - libname = libname.replace('.libs/.libs', '.libs') + libname = libname.replace('.libs/.libs', '.libs').replace('.libs\\.libs', '.libs') return libname -- cgit v1.2.1