-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Flagpoll on Windows doesn't seem to be able to process paths enclosed in
quotation marks. This is problematic, since on Windows paths with spaces are
generally enclosed in quotes.
Examples:
a path with spaces:
> set FLAGPOLL_PATH="c:\cygwin\home\buildbot\cppdom
test\install-64-bit\lib64\flagpoll"
> flagpoll --exists cppdom
ERROR: package cppdom not found.
without spaces:
> set
FLAGPOLL_PATH=c:\cygwin\home\buildbot\cppdomtest\install-64-bit\lib64\flagpoll
> flagpoll --exists cppdom
yes
without spaces, but enclosed in quotes:
> set
FLAGPOLL_PATH="c:\cygwin\home\buildbot\cppdomtest\install-64-bit\lib64\flagpoll"
> flagpoll --exists cppdom
ERROR: package cppdom not found
Original issue reported on code.google.com by karls...@gmail.com on 24 Aug 2013 at 2:09