From owner-freebsd-bugs Thu Mar 6 00:24:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA03886 for bugs-outgoing; Thu, 6 Mar 1997 00:24:09 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA03870 for ; Thu, 6 Mar 1997 00:24:02 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id TAA27895; Thu, 6 Mar 1997 19:16:22 +1100 Date: Thu, 6 Mar 1997 19:16:22 +1100 From: Bruce Evans Message-Id: <199703060816.TAA27895@godzilla.zeta.org.au> To: freebsd-bugs@freebsd.org, pius@iago.ienet.com Subject: Re: Makefiles with chown user.group instead of chown user:group Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >There are a few Makefiles in the source tree that each contain one or >two occurrences of chown(8) that use a '.' instead of a ':' to separate >the user operand from the group operand. Since I had recompiled chown >without -DSUPPORT_DOT, this caused my "make world" to repeatedly fall >over. These are the Makefiles: > > /usr/src/gnu/usr.bin/groff/mm/Makefile > /usr/src/share/mk/bsd.prog.mk > /usr/src/games/boggle/Makefile > /usr/src/share/me/Makefile > /usr/src/share/zoneinfo/Makefile > /usr/src/usr.bin/ee/Makefile > >I submitted a PR only for the first one (it caused the build-tools >target to fall over -- the other ones caused the install target to >fall over). Most of these are broken for another reason: they build things at install time and/or don't use `install' properly. Bruce