From owner-freebsd-current Sat Jun 29 10:22:21 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA15813 for current-outgoing; Sat, 29 Jun 1996 10:22:21 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id KAA15806 for ; Sat, 29 Jun 1996 10:22:17 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id DAA11936; Sun, 30 Jun 1996 03:20:57 +1000 Date: Sun, 30 Jun 1996 03:20:57 +1000 From: Bruce Evans Message-Id: <199606291720.DAA11936@godzilla.zeta.org.au> To: chuckr@Glue.umd.edu, gmarco@masternet.it Subject: Re: remote make install Cc: current@FreeBSD.ORG Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> > > install -C -o bin -g bin -m 644 worm/makecdfs.sh /usr/share/examples/worm/mak >> > ecdfs.sh >> > > *** Error code 71 >> > >> > *shrug* - sorry, I really don't know what to tell you! >> >> You probably don't have the directory worm in your /usr/share/examples >That was it. I guess the thing to be learned is, when doing a remote >install, it might pay to do a make hierarchy, mk, bootstrap, install, not >just a make install. `make world' makes the hierarchy. I never use `make world' or `make hierachy', so I'm used to running mtree or mkdir to when `make install' falls over. `install' gives good error messages to show the problem: $ cd /tmp; touch z; install z /tmp/nonesuch/z install: mkstemp: /tmp/nonesuch for /tmp/nonesuch/z: No such file or directory This goes to stderr. The "*** Error code 71" message from make goes to stdout and isn't as useful. Bruce