Quantcast
Channel: How to stop MinGW and MSYS from mangling path names given at the command line - Stack Overflow
Browsing all 7 articles
Browse latest View live

Answer by David Harvey for How to stop MinGW and MSYS from mangling path...

export MSYS_NO_PATHCONV=1 was necessary in my case on git-bash on windows (as noted by dx_over_dt above. )

View Article



Answer by SiZiOUS for How to stop MinGW and MSYS from mangling path names...

Indeed, in the original MSYS project provided by MinGW.org, there is no way to disable the Posix path conversion.That's why I made a little fork of the msys-core runtime which supports the...

View Article

Answer by Igor Mukhin for How to stop MinGW and MSYS from mangling path names...

There is a way to suppress the path translation by setting MSYS_NO_PATHCONV=1 in Windows Git MSys or MSYS2_ARG_CONV_EXCL="*" in MSYS2.Alternatively, you can set the variable only temporarily just for...

View Article

Answer by Steven for How to stop MinGW and MSYS from mangling path names...

Unfortunately putting two forward slashes for this example doesn't work as expected.rsync -rvztn --delete --exclude="/application/logs/" ...I want 'rsync' to exclude files only at /application/logs...

View Article

Answer by Gurjeet Singh for How to stop MinGW and MSYS from mangling path...

I just discovered a neat trick to avoid MSYS/MinGW translating the paths for you.If you use double-slash to start the path, then MSYS won't translate the path to DOS format. So in OP's example, the...

View Article


Answer by ak2 for How to stop MinGW and MSYS from mangling path names given...

I don't think there's a way to switch this off. MSYS is a fork of an old Cygwin version with a number of tweaks aimed at improved Windows integration, whereby the automatic POSIX path translation when...

View Article

How to stop MinGW and MSYS from mangling path names given at the command line

On Windows, I'm cross-compiling a program for ARM/Linux using CodeSourcery's cross-compiler suite. I use MinGW MSYS as my command interpreter, and very often it will mangle my paths and pathnames. For...

View Article
Browsing all 7 articles
Browse latest View live




Latest Images