I think the answer is, all those configures you ran you thought were testing stuff, weren't. Unless you set PATH_SEPARATOR=":".
No that test was just too complicated and it would only succeed in the (unlikely) event that your path_separator was ";". Nowhere does it set path_separator to ':'since =: is not equivalent to =':'. Earlier configures had a more pedestrian approach. The problem is the AC_INIT macro, I believe. On Sun, Apr 19, 2015 at 4:51 PM, David Macek <[email protected]> wrote: > On 19. 4. 2015 23:43, Greg Jung wrote: >> PATH_SEPARATOR is buggered. So the only path it comes up with >> is /usr/xpg4/bin >> checking how to run the C preprocessor... gcc -O2 -mtune=pentium3 -E >> checking for grep that handles long lines and -e... ../con-figure: >> line 5102: printf %s\n: No such file or directory >> DEBUG: PATH_SEP=; >> 5102 >> /usr/xpg4/bin >> con-figure: error: no acceptable grep could be found in >> /mingw32/bin:/usr/local/bin:/usr/bin:/bin:/c/Windows:/c/Windows/system32:/c/Windows/system32/Wbem:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl;/usr/xpg4/bin >> >> early on: >> # The user is always right. >> if test "${PATH_SEPARATOR+set}" != set; then >> PATH_SEPARATOR=: >> (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { >> (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || >> PATH_SEPARATOR=';' >> } >> fi >> >> replacing the inside with >> PATH_SEPARATOR=':' >> if (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ; then >> PATH_SEPARATOR=';' >> fi >> >> makes it work. > > Are you missing /bin/sh.exe? > > -- > David Macek > ------------------------------------------------------------------------------ BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with the BPMN 2 standard Learn Process modeling best practices with Bonita BPM through live exercises http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_ source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF _______________________________________________ Msys2-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/msys2-users
