From owner-freebsd-stable Mon Jun 18 9: 3:57 2001 Delivered-To: freebsd-stable@freebsd.org Received: from melchior.cuivre.fr.eu.org (melchior.enst.fr [137.194.161.6]) by hub.freebsd.org (Postfix) with ESMTP id 254CD37B401 for ; Mon, 18 Jun 2001 09:03:54 -0700 (PDT) (envelope-from thomas@cuivre.fr.eu.org) Received: from melusine.cuivre.fr.eu.org (melusine.enst.fr [137.194.160.34]) by melchior.cuivre.fr.eu.org (Postfix) with ESMTP id 43BC97E4E for ; Mon, 18 Jun 2001 18:03:51 +0200 (CEST) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 92BBA24D08; Mon, 18 Jun 2001 18:03:49 +0200 (CEST) Date: Mon, 18 Jun 2001 18:03:49 +0200 From: Thomas Quinot To: stable@freebsd.org Subject: Re: Recompiling -stable sysinstall Message-ID: <20010618180349.A11653@melusine.cuivre.fr.eu.org> Reply-To: thomas@cuivre.fr.eu.org References: <20010615145909.A48238@melusine.cuivre.fr.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20010615145909.A48238@melusine.cuivre.fr.eu.org>; from thomas@cuivre.fr.eu.org on Fri, Jun 15, 2001 at 02:59:09PM +0200 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Le 2001-06-15, Thomas Quinot écrivait : > for map in ${KEYMAPS} ; do \ > - kbdcontrol -L $$map | \ > + (cd ${.CURDIR}/../../share/syscons/keymaps; \ > + kbdcontrol -L $$map) | \ > sed -e '/^static accentmap_t/,$$d' >> keymap.tmp ; \ An alternative to this change is MFC'ing change 1.110 from the file that now is src/usr.sbin/sysinstall/Makefile in -CURRENT: =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- src/usr.sbin/sysinstall/Makefile 2001/05/10 15:57:16 1.109 +++ src/usr.sbin/sysinstall/Makefile 2001/05/12 09:19:36 1.110 @@ -1,4 +1,4 @@ -# $FreeBSD: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v 1.109 2001/05/10 15: 57:16 sobomax Exp $ +# $FreeBSD: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v 1.110 2001/05/12 09: 19:36 sobomax Exp $ PROG= sysinstall MAN= sysinstall.8 @@ -84,7 +84,8 @@ KEYMAPS= be.iso br275.iso danish.iso fin keymap.h: rm -f keymap.tmp for map in ${KEYMAPS} ; do \ - kbdcontrol -L $$map | \ + env KEYMAP_PATH=${.CURDIR}/../../share/syscons/keymaps \ + kbdcontrol -L $$map | \ sed -e '/^static accentmap_t/,$$d' >> keymap.tmp ; \ done echo "static struct keymapInfo keymapInfos[] = {" >> keymap.tmp -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message