From owner-freebsd-stable Sat Nov 4 10:44: 8 2000 Delivered-To: freebsd-stable@freebsd.org Received: from intcon.net (linux.intcon.net [206.230.48.2]) by hub.freebsd.org (Postfix) with ESMTP id 1C63437B4D7 for ; Sat, 4 Nov 2000 10:44:06 -0800 (PST) Received: from portal.megahack.com (portal.megahack.com [206.230.54.106]) by intcon.net (8.9.3/8.9.3) with ESMTP id MAA02531; Sat, 4 Nov 2000 12:43:59 -0600 Received: (from steve@localhost) by portal.megahack.com (8.11.1/8.11.1) id eA4Ihx500357; Sat, 4 Nov 2000 12:43:59 -0600 (CST) (envelope-from steve) From: Steven Farmer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14852.22766.279831.259224@catbert.megahack.com> Date: Sat, 4 Nov 2000 12:43:58 -0600 (CST) To: freebsd-stable@freebsd.org Subject: installworld failure - libsdbm.a X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After this morning's cvsup and buildworld, installworld failed trying to build libsdbm.a. I worked around the problem by adding chmod to Makefile.inc1 as shown below. BTW - isn't it kind of wierd for a library to be _built_ at installworld time? Cheers, Steve ----- ===> gnu/usr.bin/perl/library/SDBM_File cd /usr/obj/usr/src/gnu/usr.bin/perl/library/SDBM_File/ext/SDBM_File ; make -B install INSTALLPRIVLIB=/usr/libdata/perl/5.00503 INSTALLARCHLIB=/usr/libdata/perl/5.00503/mach cd sdbm && make all rm -rf libsdbm.a ar cr libsdbm.a sdbm.o pair.o hash.o && : libsdbm.a chmod 755 libsdbm.a chmod:No such file or directory *** Error code 1 ----- % diff -c /usr/src/Makefile.inc1.orig /usr/src/Makefile.inc1 *** /usr/src/Makefile.inc1.orig Sat Nov 4 07:27:48 2000 --- /usr/src/Makefile.inc1 Sat Nov 4 12:14:12 2000 *************** *** 298,304 **** # installworld: mkdir -p ${INSTALLTMP} ! for prog in [ awk cat chflags chown date echo egrep find grep \ install ln make makewhatis mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ --- 298,304 ---- # installworld: mkdir -p ${INSTALLTMP} ! for prog in [ awk cat chflags chmod chown date echo egrep find grep \ install ln make makewhatis mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ % To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message