diff options
Diffstat (limited to 'check/check-relocatable')
-rwxr-xr-x | check/check-relocatable | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/check/check-relocatable b/check/check-relocatable index b7ab93a..589eddf 100755 --- a/check/check-relocatable +++ b/check/check-relocatable @@ -8,8 +8,8 @@ if [ "$native_win32" = yes ]; then # Assume we have cmd to do the conversion, except we have to escape # the command switch on MSYS. [ "$OSTYPE" = msys ] && opt="\\/C" || opt="/C" - abs_top_srcdir=$($WINE cmd $opt echo "$abs_top_srcdir") - abs_srcdir=$($WINE cmd $opt echo "$abs_srcdir") + abs_top_srcdir=$($WINE cmd $opt echo "$abs_top_srcdir" | tr -d '\r') + abs_srcdir=$($WINE cmd $opt echo "$abs_srcdir" | tr -d '\r') fi # See if the pcfiledir variable is defined. First, with the path |