File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ tar -C ${CLFS}/build/${PKGNAME}-${PKGVERSION} -xvJf ${SRCDIR}/${PKGNAME}-${PKGVE
27
27
# Build and install
28
28
29
29
cd ${CLFS} /build/${PKGNAME} -${PKGVERSION} /${PKGNAME} -${PKGVERSION}
30
- make clean
31
- make || exit 1
30
+ # make clean
31
+ # make || exit 1
32
32
mkdir -p ${CLFS} /hosttools/share/syslinux
33
33
tar -C ${CLFS} /build/${PKGNAME} -${PKGVERSION} /${PKGNAME} -${PKGVERSION} -cvf - . | tar -C ${CLFS} /hosttools/share/syslinux -xf -
34
34
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ source stage01_variables
4
4
source stage02_variables
5
5
6
6
PKGNAME=ncurses
7
- PKGVERSION=5.9
7
+ PKGVERSION=6.0
8
8
9
9
# Download:
10
10
@@ -18,11 +18,12 @@ cd ${CLFS}/build/${PKGNAME}-${PKGVERSION}
18
18
tar xvzf ${SRCDIR} /${PKGNAME} -${PKGVERSION} .tar.gz
19
19
20
20
# Build and install
21
-
21
+ export CPPFLAGS=-P # Work around a broken mawk
22
+ export CFLAGS=" -I${CLFS} /cross-tools/${CLFS_TARGET} /include/kernel"
22
23
cd ${CLFS} /build/${PKGNAME} -${PKGVERSION} /${PKGNAME} -${PKGVERSION}
23
- ./configure --prefix=/ --without-debug --without-ada --enable-overwrite --host=${CLFS_ARCH} --without-cxx
24
- make -j $( grep -c processor /proc/cpuinfo )
25
- make install DESTDIR=${CLFS} /cross-tools/${CLFS_TARGET}
24
+ ./configure --prefix=/ --without-debug --without-ada --enable-overwrite --enable-widec -- host=${CLFS_ARCH} --without-cxx || exit 1
25
+ make -j $( grep -c processor /proc/cpuinfo ) || exit 1
26
+ make install DESTDIR=${CLFS} /cross-tools/${CLFS_TARGET} || exit 1
26
27
make install DESTDIR=${CLFS} /targetfs
27
28
28
29
# Clean up
You can’t perform that action at this time.
0 commit comments