From 3afabe6fdbcdac1d26e2621845fadb29e106d87a Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Sat, 20 Sep 2008 13:25:35 +0200 Subject: Don't convert unix-style / to windows-style \ on mingw cygwin and msys are both happy with normal slashes and both per default use standard unix slashes, e.g., pwd reports '/'. the previous conversion in configure.ac lead to mixed stye paths which caused problems like bug #133 on some system. not converting to \ should solve those and make everything more consistent. --- configure.ac | 5 ----- 1 file changed, 5 deletions(-) diff --git a/configure.ac b/configure.ac index 52f31ecb4..f640fefb9 100644 --- a/configure.ac +++ b/configure.ac @@ -2449,11 +2449,6 @@ XINE_REL_FONTDIR="`makeexpand "$XINE_FONTDIR" | sed -e "s,^${prefix}/,,"`" XINE_REL_LOCALEDIR="`makeexpand "$XINE_LOCALEDIR" | sed -e "s,^${prefix}/,,"`" XINE_PKGCONFIG_DIR="`makeexpand "$pkgconfigdir"`" if test "x$SYS" = "xmingw32" -o "x$SYS" = "xcygwin"; then - dnl polish paths (MinGW runtime accepts both \ and / anyway) - XINE_REL_PLUGINROOT="`echo "$XINE_REL_PLUGINROOT" | sed -e 's/\\//\\\\\\\\/g'`" - XINE_REL_PLUGINDIR="$XINE_REL_PLUGINROOT.$XINE_LT_AGE" - XINE_REL_FONTDIR="`echo "$XINE_REL_FONTDIR" | sed -e 's/\\//\\\\\\\\/g'`" - XINE_REL_LOCALEDIR="`echo "$XINE_REL_LOCALEDIR" | sed -e 's/\\//\\\\\\\\/g'`" dnl prefix in xine-config XINE_CONFIG_PREFIX="\$(cd \$(dirname \$0)/..; pwd)" dnl installation directories (in xine-config) -- cgit v1.2.3