Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Jun 2001 18:03:49 +0200
From:      Thomas Quinot <thomas@cuivre.fr.eu.org>
To:        stable@freebsd.org
Subject:   Re: Recompiling -stable sysinstall
Message-ID:  <20010618180349.A11653@melusine.cuivre.fr.eu.org>
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 %2B0200
References:  <20010615145909.A48238@melusine.cuivre.fr.eu.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010618180349.A11653>