I attempted to setup openssh-3.9p1 on Mac OS X (10.3.7). The ./configure and make work fine but 'make install' fails with: computer:~/XDev/openssh-3.9p1 bcburke$ make install if test ! -z ""; then \ /usr/bin/perl ./fixprogs ssh_prng_cmds ; \ fi (cd openbsd-compat && make) make[1]: Nothing to be done for `all'. (cd scard && make DESTDIR= install) ../mkinstalldirs /usr/local/share make[1]: execvp: ../mkinstalldirs: Permission denied make[1]: *** [install] Error 127 make: *** [scard-install] Error 2 This error occurs even if done as root. Is this just a permission problem or is there more to it? Any pointers would be appreciated. Thanks, Brian
Am 24.12.2004 um 00:37 schrieb openssh-unix-dev-request at mindrot.org:> openssh-3.9p1 for Mac OS X(cd openbsd-compat && make) make[1]: Nothing to be done for `all'. (cd scard && make DESTDIR= install) ../mkinstalldirs /usr/local/share It should be a permission problem, since my compilation of openSSH39p1 did work out of the box;) ls -l /usr/local/share drwxr-xr-x 4 root svn 136 3 Dec 00:18 share ignore the group, it will be ignored when make is called as root. If that does not work start even the ./configure as root. Hope that work, Robert Welz