changeset 1301:42fd798bbe3e

Make more of the LFS build actually build.
author Rob Landley <rob@landley.net>
date Mon, 22 Nov 2010 17:53:17 -0600
parents a80d7f256ff9
children 07852d3a2e50
files sources/control-images/lfs-bootstrap/mnt/build/kbd.sh sources/control-images/lfs-bootstrap/mnt/build/psmisc.sh sources/control-images/lfs-bootstrap/mnt/build/shadow.sh sources/control-images/lfs-bootstrap/mnt/build/udev.sh
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/sources/control-images/lfs-bootstrap/mnt/build/kbd.sh	Mon Nov 22 17:32:46 2010 -0600
+++ b/sources/control-images/lfs-bootstrap/mnt/build/kbd.sh	Mon Nov 22 17:53:17 2010 -0600
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-./configure --prefix=/usr --datadir=/lib/kbd &&
+./configure --prefix=/usr --datadir=/lib/kbd --disable-nls &&
 make -j $CPUS &&
 make install || exit 1
 
--- a/sources/control-images/lfs-bootstrap/mnt/build/psmisc.sh	Mon Nov 22 17:32:46 2010 -0600
+++ b/sources/control-images/lfs-bootstrap/mnt/build/psmisc.sh	Mon Nov 22 17:53:17 2010 -0600
@@ -4,6 +4,6 @@
 
 sed -i 's@#include<sys\/usr.h>@#include <bits\/types.h>\&@' configure &&
 
-./configure --prefix=/usr &&
+./configure --prefix=/usr --disable-nls &&
 make -j $CPUS &&
 make install
--- a/sources/control-images/lfs-bootstrap/mnt/build/shadow.sh	Mon Nov 22 17:32:46 2010 -0600
+++ b/sources/control-images/lfs-bootstrap/mnt/build/shadow.sh	Mon Nov 22 17:53:17 2010 -0600
@@ -16,7 +16,7 @@
 sed -i -e 's@#ENCRYPT_METHOD DES@ENCRYPT_METHOD MD5@' \
        -e 's@/var/spool/mail@/var/mail@' etc/login.defs &&
        
-./configure --sysconfdir=/etc &&
+./configure --sysconfdir=/etc --without-nscd &&
 make -j $CPUS &&
 make install &&
 pwconv &&
--- a/sources/control-images/lfs-bootstrap/mnt/build/udev.sh	Mon Nov 22 17:32:46 2010 -0600
+++ b/sources/control-images/lfs-bootstrap/mnt/build/udev.sh	Mon Nov 22 17:53:17 2010 -0600
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 install -d /lib/firmware /lib/udev/devices/pts /lib/udev/devices/shm &&
-mknod -m0666 /lilb/udev/devices/null c 1 3 &&
+mknod -m0666 /lib/udev/devices/null c 1 3 &&
 ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/sbin \
   --with-rootlibdir=/lib --libexecdir=/lib/udev --disable-extras \
   --disable-introspection &&