From owner-freebsd-hackers Sun Mar 12 06:16:35 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id GAA17038 for hackers-outgoing; Sun, 12 Mar 1995 06:16:35 -0800 Received: from ibp.ibp.fr (ibp.ibp.fr [132.227.60.30]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id GAA17032 for ; Sun, 12 Mar 1995 06:16:33 -0800 From: Remy.Card@masi.ibp.fr Received: from blaise.ibp.fr (blaise.ibp.fr [132.227.60.1]) by ibp.ibp.fr (8.6.11/jtpda-5.0) with SMTP id PAA00307 for ; Sun, 12 Mar 1995 15:15:45 +0100 Received: by blaise.ibp.fr (4.1/SMI-4.1) id AA26814; Sun, 12 Mar 95 15:16:37 +0100 Received: (card@localhost) by bbj.ibp.fr (8.6.9/bbj-1.0) id PAA00110 for hackers@freebsd.org; Sun, 12 Mar 1995 15:11:25 GMT Message-Id: <199503121511.PAA00110@bbj.ibp.fr> Subject: gnu/usr.sbin missing To: hackers@FreeBSD.org Date: Sun, 12 Mar 1995 15:11:24 +0000 () X-Mailer: ELM [version 2.4 PL23beta2] Content-Type: text Content-Length: 1098 Sender: hackers-owner@FreeBSD.org Precedence: bulk Hi, In the top level source Makefile, the targets ``most'' and ``installmost'' have not been modified to take gnu/usr.sbin into account. Can someone please commit the enclosed patch? Thanks Remy *** Makefile.old Sun Mar 12 15:07:24 1995 --- Makefile Sun Mar 12 15:08:01 1995 *************** *** 154,159 **** --- 154,160 ---- cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} install cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} install cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} ${.MAKEFLAGS} install #.if defined(MAKE_EBONES) && !defined(NOCRYPT) # cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} installmost #.endif *************** *** 172,177 **** --- 173,179 ---- cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} all cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} all cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/gnu/usr.sbin && ${MAKE} ${.MAKEFLAGS} all #.if defined(MAKE_EBONES) && !defined(NOCRYPT) # cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} most #.endif