After running /configure --exec-prefix=/bin (also tried
--prefix=/bin), make succeeds, but sudo make install fails:
...
fi
/usr/bin/install -c -m 0755 bash /bin/bin/bash
/usr/bin/install -c -m 0555 bashbug /bin/bin/bashbug
( cd ./doc ; make \
man1dir=/usr/local/man/man1 man1ext=.1 \
"Scott Dalton" <[EMAIL PROTECTED]> writes:
> Notice how it is sticking an extra "/bin/" in there (third and fourth
> lines down).
This is as expected. bindir is defined as $(exec_prefix)/bin, so you
get /bin/bin for bindir if exec_prefix is defined to /bin. You either
want --bindir=/bin or --ex