Re: mkinstalldirs detritus

2003-09-26 Thread Alexandre Duret-Lutz
>>> "Eric" == Eric Sunshine <[EMAIL PROTECTED]> writes: Eric> Hello, Eric> The mkinstalldirs script which ships with Autoconf and Eric> Automake leaves bogus directories named "-p" and "--" in Eric> its wake on platforms (such as NextStep and OpenStep) for Eric> which the `mkdir' command doe

Re: mkinstalldirs detritus

2003-09-26 Thread Eric Sunshine
Alexandre Duret-Lutz wrote: Thank you. Automake is the master for this file. Given Andrea's comment and yours about _AS_MKDIR_P_PREPARE, how about the following instead? + test -d ./-p && rmdir ./-p + test -d ./-- && rmdir ./-- + # Clean up after NextStep and OpenStep mkdir. +

mkinstalldirs detritus

2003-09-26 Thread Eric Sunshine
Hello, The mkinstalldirs script which ships with Autoconf and Automake leaves bogus directories named "-p" and "--" in its wake on platforms (such as NextStep and OpenStep) for which the `mkdir' command does not recognize any options. Here is a patch which fixes this bug. The patch is base