From owner-freebsd-current Mon Apr 17 22:58:45 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA15953 for current-outgoing; Mon, 17 Apr 1995 22:58:45 -0700 Received: from mail.barrnet.net (mail.BARRNET.NET [131.119.246.7]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id WAA15947 for ; Mon, 17 Apr 1995 22:58:43 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by mail.barrnet.net (8.6.10/MAIL-RELAY-LEN) with ESMTP id RAA19385 for ; Sun, 16 Apr 1995 17:59:59 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id KAA21944 for current@freebsd.org; Mon, 17 Apr 1995 10:44:51 +1000 Date: Mon, 17 Apr 1995 10:44:51 +1000 From: Bruce Evans Message-Id: <199504170044.KAA21944@godzilla.zeta.org.au> To: current@FreeBSD.org Subject: compiler warnings for building GENERIC kernel Sender: current-owner@FreeBSD.org Precedence: bulk I'd like all warnings from all system makes to be fixed for 2.1. `make depend' in sys/compile/GENERIC current produces the following error output: >mv: .depend: set owner/group: Operation not permitted This is because `mkdep' creates a temporary file in /tmp, and /tmp has group bin so the temporary has group bin, and I'm not in group bin so I can't move the temporary to my GENERIC directory without losing the group. I don't know of a good fix. Inheriting the group from the parent directory seems to be completely wrong for temporary files. `make' in sys/compile/GENERIC currently produces the following error output: >../../i386/isa/if_le.c:805: warning: large integer implicitly truncated to unsigned type >... >../../i386/isa/if_le.c:808: warning: large integer implicitly truncated to unsigned type I will fix this in a few minutes. Bruce