MacOS X 10.4.10 and Bash 3.2

2007-06-30 Thread Scott Dalton
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 \

Re: MacOS X 10.4.10 and Bash 3.2

2007-06-30 Thread Andreas Schwab
"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