[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: make install failed; dump core in mkdir
From: |
Greg Wooledge |
Subject: |
Re: make install failed; dump core in mkdir |
Date: |
Mon, 2 Dec 2019 13:48:10 -0500 |
User-agent: |
Mutt/1.10.1 (2018-07-13) |
On Mon, Dec 02, 2019 at 01:41:11PM -0500, Chet Ramey wrote:
> On 12/1/19 10:20 AM, George R Goffe via Bug reports for the GNU Bourne
> Again SHell wrote:
> > mkdir ()
> > {
> > dirs="$@";
> > for dir in $dirs;
> > do
> > /bin/mkdir -p "$dir";
> > done
> > }
> >
> >
> >
> > make[1]: Leaving directory '/export/home/tools/bash/bash-5.0/po'
> > ( cd /tools/bash/bash-5.0/examples/loadables && make DESTDIR= install )
> > make[1]: Entering directory
> > '/export/home/tools/bash/bash-5.0/examples/loadables'
> > ../../support/mkinstalldirs: line 53: 1822305 Segmentation fault (core
> > dumped) mkdir -p -- . 2> /dev/null
Just noticed *another* issue with this function, and with some other
functions that were proposed earlier today. The -- option is going
to be treated as a directory and trigger a separate invocation of the
"real" mkdir: /bin/mkdir -p --
The good news is, if this actually happens, you'll probably get an error
message telling you that it happened.
wooledg:~$ mkdir -p --
mkdir: missing operand
Try 'mkdir --help' for more information.
If you didn't see that, then it's pretty likely that your function was
not actually called.
Re: make install failed; dump core in mkdir, Chet Ramey, 2019/12/02
- Re: make install failed; dump core in mkdir,
Greg Wooledge <=