diff options
author | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-09-20 13:25:35 +0200 |
---|---|---|
committer | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-09-20 13:25:35 +0200 |
commit | 3afabe6fdbcdac1d26e2621845fadb29e106d87a (patch) | |
tree | 494389450732b21fc4d466ee5643d79ab5a2f33b | |
parent | 574282f24812a9cfac7f120e08115b29362f44fa (diff) | |
download | xine-lib-3afabe6fdbcdac1d26e2621845fadb29e106d87a.tar.gz xine-lib-3afabe6fdbcdac1d26e2621845fadb29e106d87a.tar.bz2 |
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.
-rw-r--r-- | configure.ac | 5 |
1 files changed, 0 insertions, 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) |