Re: Can't do an make installworld

2007-07-18 Thread Paul Hoffman

At 4:12 PM +1200 7/18/07, Jonathan Chen wrote:

On Tue, Jul 17, 2007 at 03:49:02PM -0700, Paul Hoffman wrote:

 At 5:38 PM -0500 7/17/07, Shaun Meyer wrote:
 On Tue, July 17, 2007 4:14 pm, Paul Hoffman wrote:
  Any help would be appreciated here. I'm on a clean 6.1-RELEASE sysem.
  I created /home/pxe. I cd'd to /usr/src. I gave 'make installworld
  DESTDIR=/home/pxe'. It ends with:
  . . .
 
 
 Worked fine on my 6.2 just now.

 Interestingly, after I sent this, I tried it on a 6.0 system, and had
 the same problem (with fewer files):

 --
  Installing everything
 --
 cd /usr/src; make -f Makefile.inc1 install
 === share/info (install)
 === include (install)
 creating osreldate.h from newvers.sh
 touch: not found
 *** Error code 127


This is commonly caused by a bad date. Check the system time.


That doesn't seem to be it. The system time is fine, and none of the 
files in /usr/src/include have funny times (either in the future or 
near 1970).


Any other clues? Does 'make installworld DESTDIR=/home/something' 
work for other people running 6.1-RELEASE?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't do an make installworld

2007-07-17 Thread Paul Hoffman
Any help would be appreciated here. I'm on a clean 6.1-RELEASE sysem. 
I created /home/pxe. I cd'd to /usr/src. I gave 'make installworld 
DESTDIR=/home/pxe'. It ends with:

. . .
--

 Installing everything

--
cd /usr/src; make -f Makefile.inc1 install
=== share/info (install)
install -o root -g wheel -m 444  dir-tmpl /home/pxe/usr/share/info/dir
install:No such file or directory
*** Error code 1

Stop in /usr/src/share/info.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.


OK, that seems bad, so I tried just doing a 'mkdir 
/home/pxe/usr/share/info/dir' and running again. This time, it gets 
past that step, but fails on the next:

. . .
--

 Installing everything

--
cd /usr/src; make -f Makefile.inc1 install
=== share/info (install)
=== include (install)
install -C -o root -g wheel -m 444  a.out.h ar.h assert.h bitstring.h 
complex.h cpio.h _ctype.h ctype.h db.h dirent.h dlfcn.h elf.h 
elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h fts.h ftw.h getopt.h 
glob.h grp.h hesiod.h histedit.h ieeefp.h ifaddrs.h inttypes.h 
iso646.h kenv.h langinfo.h libgen.h limits.h link.h locale.h malloc.h 
memory.h monetary.h mpool.h ndbm.h netconfig.h netdb.h nl_types.h 
nlist.h nss.h nsswitch.h objformat.h paths.h proc_service.h pthread.h 
pthread_np.h pwd.h ranlib.h readpassphrase.h regex.h regexp.h 
resolv.h runetype.h search.h setjmp.h sgtty.h signal.h stab.h 
stdbool.h stddef.h stdio.h stdlib.h string.h stringlist.h strings.h 
sysexits.h tar.h tgmath.h time.h timeconv.h timers.h ttyent.h 
ulimit.h unistd.h utime.h utmp.h uuid.h varargs.h vis.h wchar.h 
wctype.h wordexp.h osreldate.h /home/pxe/usr/include

install:No such file or directory
*** Error code 1

Stop in /usr/src/include.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.


However, there *is* already a /home/pxe/usr/include, and it is 
populated with a whole bunch of directories, just none of the regular 
files.


Is there a better way for me to do an 'make installworld'? What am I 
missing here?


--Paul Hoffman
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't do an make installworld

2007-07-17 Thread Paul Hoffman

At 5:38 PM -0500 7/17/07, Shaun Meyer wrote:

On Tue, July 17, 2007 4:14 pm, Paul Hoffman wrote:

 Any help would be appreciated here. I'm on a clean 6.1-RELEASE sysem.
 I created /home/pxe. I cd'd to /usr/src. I gave 'make installworld
 DESTDIR=/home/pxe'. It ends with:
 . . .



Worked fine on my 6.2 just now.


Interestingly, after I sent this, I tried it on a 6.0 system, and had 
the same problem (with fewer files):


--

 Installing everything

--
cd /usr/src; make -f Makefile.inc1 install
=== share/info (install)
=== include (install)
creating osreldate.h from newvers.sh
touch: not found
*** Error code 127



This isn't a permissions problem, is it?


Shouldn't be, given that I am running as root.

--Paul Hoffman
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't do an make installworld

2007-07-17 Thread Shaun Meyer

On Tue, July 17, 2007 4:14 pm, Paul Hoffman wrote:
 Any help would be appreciated here. I'm on a clean 6.1-RELEASE sysem.
 I created /home/pxe. I cd'd to /usr/src. I gave 'make installworld
 DESTDIR=/home/pxe'. It ends with:
 . . .


Worked fine on my 6.2 just now. This isn't a permissions problem, is it?

~Shaun



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't do an make installworld

2007-07-17 Thread Jonathan Chen
On Tue, Jul 17, 2007 at 03:49:02PM -0700, Paul Hoffman wrote:
 At 5:38 PM -0500 7/17/07, Shaun Meyer wrote:
 On Tue, July 17, 2007 4:14 pm, Paul Hoffman wrote:
  Any help would be appreciated here. I'm on a clean 6.1-RELEASE sysem.
  I created /home/pxe. I cd'd to /usr/src. I gave 'make installworld
  DESTDIR=/home/pxe'. It ends with:
  . . .
 
 
 Worked fine on my 6.2 just now.
 
 Interestingly, after I sent this, I tried it on a 6.0 system, and had 
 the same problem (with fewer files):
 
 --
  Installing everything
 --
 cd /usr/src; make -f Makefile.inc1 install
 === share/info (install)
 === include (install)
 creating osreldate.h from newvers.sh
 touch: not found
 *** Error code 127

This is commonly caused by a bad date. Check the system time.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
With sufficient thrust, pigs fly just fine. However, this is not necessarily
a good idea. It is hard to be sure where they are going to land, and it
could be dangerous sitting under them as they fly overhead. -- RFC 1925
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]